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
Adds debug logging to the service config manager to assist with troubleshooting configuration loading issues. This change adds logging for scenarios where the config file is empty, not found, or fails to load.
Improves diagnostic logging and fixes typo
Updates logging to use Console.WriteLine instead of Debug.WriteLine for better visibility.
Includes server config status in HTTP challenge server logs.
Corrects a typo in the CLI help text for backup import.
Handles exceptions when loading service config
Improves the robustness of the service configuration loading process by catching potential exceptions.
Specifically, it catches exceptions when attempting to access the AppData path and unauthorized access exceptions when reading the service configuration file. This prevents the service from crashing and provides more informative error messages to the user.
Fixes server connection configuration.
Ensures the client uses the provided connection configuration
or defaults to the service configuration.
Adds logging to display the service configuration for debugging.
Adds debug logging for config loading
Adds logging statements to the API client and service
config manager to aid in debugging configuration loading
issues. This helps track the base URI and service config
file paths used by the application.
Copy file name to clipboardExpand all lines: src/Certify.CLI/CertifyCLI.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ internal void ShowHelp()
108
108
System.Console.WriteLine("certify credential list : list current stored credential summary information");
109
109
System.Console.WriteLine("certify activate <email address> <key> : activate your Certify The Web install using your license key");
110
110
System.Console.WriteLine("certify backup export <directory or full filename> <encryption secret> : export a backup file (autonamed if a directory) using the given secret password for encryption.");
111
-
System.Console.WriteLine("certify backup import preview <full filename> <encryption secret> : import a backup file using the given secret password for encryption. 'preview' is optional and us used to test a backup without importing anything.");
111
+
System.Console.WriteLine("certify backup import preview <full filename> <encryption secret> : import a backup file using the given secret password for encryption. 'preview' is optional and is used to test a backup without importing anything.");
112
112
System.Console.WriteLine("\n\n");
113
113
System.Console.WriteLine("For help, see the docs at https://docs.certifytheweb.com");
0 commit comments