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(); }