From 7ab69080a98531e1d26dd525e11ada09199eba90 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 22 Dec 2018 13:38:22 +0000 Subject: [PATCH] typo --- .../{streaming => Streaming}/StreamingApiController.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename Yavsc/ApiControllers/{streaming => Streaming}/StreamingApiController.cs (76%) diff --git a/Yavsc/ApiControllers/streaming/StreamingApiController.cs b/Yavsc/ApiControllers/Streaming/StreamingApiController.cs similarity index 76% rename from Yavsc/ApiControllers/streaming/StreamingApiController.cs rename to Yavsc/ApiControllers/Streaming/StreamingApiController.cs index 260f3996..919d3bb3 100644 --- a/Yavsc/ApiControllers/streaming/StreamingApiController.cs +++ b/Yavsc/ApiControllers/Streaming/StreamingApiController.cs @@ -14,6 +14,8 @@ namespace Yavsc { public StreamingApiController (LoggerFactory loggerFactory) { _logger = loggerFactory.CreateLogger(); + _logger.LogInformation + ("created logger"); } public async Task GetStreamingToken() @@ -21,8 +23,9 @@ namespace Yavsc { _logger.LogInformation("Token asked"); throw new NotImplementedException(); } - public async Task GetLiveStreamingInde() + public async Task GetLiveStreamingIndex() { + _logger.LogInformation("GetLiveStreamingIndex"); throw new NotImplementedException(); }