- change logging level as it was logging too much

This commit is contained in:
Richard Alam 2015-08-05 16:28:16 +00:00
parent 8a85e0b3a1
commit aa6191402c
2 changed files with 36 additions and 35 deletions

View File

@ -1,33 +1,33 @@
akka {
actor {
debug {
receive = on
}
}
loglevel = DEBUG
stdout-loglevel = "DEBUG"
rediscala-subscriber-worker-dispatcher {
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
# Throughput defines the maximum number of messages to be
# processed per actor before the thread jumps to the next actor.
# Set to 1 for as fair as possible.
throughput = 512
}
}
freeswitch {
esl {
host="127.0.0.1"
port=8021
password="ClueCon"
}
}
redis {
host="127.0.0.1"
port=6379
password=""
}
akka {
actor {
debug {
receive = on
}
}
loglevel = INFO
stdout-loglevel = "INFO"
rediscala-subscriber-worker-dispatcher {
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
# Throughput defines the maximum number of messages to be
# processed per actor before the thread jumps to the next actor.
# Set to 1 for as fair as possible.
throughput = 512
}
}
freeswitch {
esl {
host="127.0.0.1"
port=8021
password="ClueCon"
}
}
redis {
host="127.0.0.1"
port=6379
password=""
}

View File

@ -20,9 +20,10 @@
<logger name="akka" level="INFO" />
<logger name="org.bigbluebutton" level="DEBUG" />
<root level="DEBUG">
<logger name="org.freeswitch.esl" level="WARN" />
<root level="INFO">
<appender-ref ref="STDOUT"/>
<appender-ref ref="FILE" />
</root>
</configuration>
</configuration>