You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-proxy/CommandHandlers/ProxyCommandHandler.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ public async Task<int> InvokeAsync(InvocationContext context)
37
37
_logger.LogWarning("You haven't configured any plugins. Please add plugins to your configuration file. Dev Proxy will exit.");
38
38
return1;
39
39
}
40
-
if(Configuration.UrlsToWatch.Count==0)
40
+
if(_urlsToWatch.Count==0)
41
41
{
42
-
_logger.LogWarning("You haven't configured any URLs to watch. Please add URLs to your configuration file or use the --urls-to-watch option. Dev Proxy will exit.");
42
+
_logger.LogError("You haven't configured any URLs to watch. Please add URLs to your configuration file or use the --urls-to-watch option. Dev Proxy will exit.");
0 commit comments