0
votes
0answers
77 views

logging handle for turning off and on

I have a package pack6 and i have many actors and standalone classes inside that package(pack6). I am extending logging instance in the package object package logging.changes package object ...
0
votes
0answers
109 views

Guaranteeing log output flush in Akka upon system shutdown?

I'm using Akka FSM with Scala and logging using the log member of the FSM trait, i.e. an instance of akka.event.Logging. When calling context.system.shutdown() to shutdown the actor system when the ...
0
votes
1answer
969 views

How to redirect logging in akka?

I am implementing a distributed database with scala 2.9 and akka 2.0. My current problem is I want to redirect the standard logging to a file instead of stdout. I don't realy want to use SLF4J or ...
8
votes
2answers
812 views

Akka Logging outside Actor

I have an Akka Actor that makes a call to MyObject.foo(). MyObject is not an Actor. How do I setup Logging in it? With an Actor it's simple, because I can just mixin ActorLogging. In MyObject, I ...
1
vote
0answers
214 views

Akka disable logging to sysout

Our application uses akka actors (v. 1.1.2) that throw exception from time to time. We would like to have those exceptions logged and are using event-handlers = ["akka.event.slf4j.Slf4jEventHandler"] ...
2
votes
1answer
359 views

How do I change Akka and Logback logging level

To change logging level to WARN, do I leave akka.conf to DEBUG: event-handlers = ["akka.event.slf4j.Slf4jEventHandler"] event-handler-level = "DEBUG" and change logback.xml to WARN? Or should I ...
4
votes
1answer
341 views

logger names for configuring akka logger using the event-handler

So, I am using Slf4jEventHandler and logback-classic. How do I configure the log levels for different actors separately? [I am using Akka 2.0_M2] I tried doing something like <configuration ...
1
vote
1answer
230 views

Disable Logging for Akka STM (Multiverse)

I am using akka stm and when my application starts it prints out (to the stderr): Okt 20, 2011 10:17:10 AM org.multiverse.api.GlobalStmInstance <clinit> Information: Initializing ...
10
votes
3answers
1k views

why use akka eventhandler for logging

In the following document, event handlers are described as taking the place of logging http://akka.io/docs/akka/1.2/general/event-handler.html There is an Event Handler which takes the place of a ...
3
votes
1answer
998 views

Set logging level in Akka

I have developed a financial data distribution server with Akka, and I want to set logging level for the application. The documentation at akka.io is sketchy at the best; they say there is no more ...