We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
module ServerList let props = props( let rec loop (ctx: Actor<Msg>) = function | Tick -> logInfo ctx "Getting server list..." ...
It's spawned by another actor:
let props () : Props = Props.props( ... fun (ctx: Actor<obj>) -> spawn ctx "server-list" ServerList.props |> ignore ... ).ToProps()
After that I expect that the logs should contain "server-list" as an appender name, but they don't:
12:18:43 INFO [0, Culture=neutral, PublicKeyToken=null]], 19] Getting server list...
It make reading logs very hard.
The text was updated successfully, but these errors were encountered:
@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 ${event-properties:item=logSource:whenEmpty=${logger}} instead of just ${logger}.
${event-properties:item=logSource:whenEmpty=${logger}}
${logger}
Sorry, something went wrong.
No branches or pull requests
It's spawned by another actor:
After that I expect that the logs should contain "server-list" as an appender name, but they don't:
It make reading logs very hard.
The text was updated successfully, but these errors were encountered: