-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NLog logger swallows a lot of messages #3428
Comments
Solved by adding NLog config: let nlogConfig = LoggingConfiguration()
let consoleTarget = new ColoredConsoleTarget()
nlogConfig.AddTarget("console", consoleTarget)
let rule = LoggingRule("*", LogLevel.Debug, consoleTarget)
nlogConfig.LoggingRules.Add(rule)
LogManager.Configuration <- nlogConfig However, the adapter names are very long and rather meaningless, they do not contain actor names:
Which is already reported in Horusiath/Akkling#94 |
@vasily-kirichenko Try updating to latest Akka.Logger.NLog 1.3.1: https://www.nuget.org/packages/Akka.Logger.NLog/ It should improve the logger-names for NLog. Alternative use |
output:
All is good, the info messages are there.
Now with the NLog logger on:
A lot of messages are not presented:
https://github.com/vasily-kirichenko/AkkaNLogBug
The text was updated successfully, but these errors were encountered: