Guest User

Untitled

a guest
May 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class TestController : Controller
  2. {
  3. private readonly ILogger _logger;
  4.  
  5. public TestController(ILogger logger)
  6. {
  7. _logger = logger;
  8. }
  9.  
  10. public IActionResult Register()
  11. {
  12. //Some controller logic...
  13.  
  14. _logger.LogInformation("User named {0} created with id: {1}", user.Name, user.Id);
  15. }
  16. }
Add Comment
Please, Sign In to add comment