Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. services.AddLogging(loggingBuilder => {
  2. loggingBuilder.AddConfiguration(Configuration.GetSection("Logging"));
  3. loggingBuilder.AddConsole();
  4. loggingBuilder.AddDebug();
  5. });
  6.  
  7. info: MyApp.MyNamespace.OtherNamespace[0]
  8. The message I actually want to see
  9.  
  10. MyApp.MyNamespace.OtherNamespace:Information: The message I actually want to see
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement