Saurav Shah
Saurav Shah

Reputation: 681

Play 2.1.0 subproject logs issue

I have included an akka 2.1 subproject to my play project. The logs however have stopped showing up in application.log now.

I'm using the basic mechanism to log akka private LoggingAdapter log = Logging.getLogger(getContext().system(), this);

What and where should be the config changes done to include these logs with my play application logs?

Upvotes: 0

Views: 589

Answers (1)

Nicolas Girardin
Nicolas Girardin

Reputation: 607

It seems that the Akka log level changed from INFO to WARNING in Play 2.1.1.

You can set it back to INFO by adding the play.akka.loglevel="INFO" property in the conf/application.conf file.

Upvotes: 2

Related Questions