Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Cli/func/Common/SecretsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static string AppSettingsFilePath
});
var secretsFilePath = Path.Combine(rootPath, secretsFile);

ColoredConsole.WriteLine(DarkGray($"'{secretsFile}' found in root directory ({rootPath})."));
ColoredConsole.WriteLine(DarkGray($"'{secretsFile}' should be in root directory ({rootPath})."));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for raising this issue!

This isn't the intention of this log here - it should be logging if it did find a local.settings file, and not notifying were it should be. If this isn't working as intended feel free to file an issue and we can investigate what's actually happening to fix it. You're also welcome to take a stab at this yourself but chaning the verbiage of the log here isn't the approach I would like us to take.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the clarification. It should be quite straight forward to fix that. I hope I will be able to do so at the weekend.

return secretsFilePath;
}
}
Expand Down