Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Jul 21, 2020
1 parent 1bf3c9e commit c2271fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"NETDAEMON__SOURCEFOLDER": "${localEnv:NETDAEMON__SOURCEFOLDER}"
},
"postCreateCommand": "dotnet restore && .devcontainer/install_prettyprompt.sh",
// Uncomment the next line if you want to publish any ports.
"forwardPorts": [
5000
],
// Uncomment the next line if you want to publish or forward any ports.
// "forwardPorts": [
// 5000
// ],
// "appPort": [
// 5000
// ],
Expand Down
2 changes: 1 addition & 1 deletion src/DaemonRunner/DaemonRunner/Service/RunnerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)

if (loadedDaemonApps is null || !loadedDaemonApps.Any())
{
_logger.LogWarning("No .cs files files found, please add files to [netdaemonfolder]/apps");
_logger.LogWarning("No .cs files files found, please add files to {sourceFolder}/apps", sourceFolder);
return;
}

Expand Down

0 comments on commit c2271fb

Please sign in to comment.