WD1001 |
SSL Certificate Read Error |
validate_license.py |
get_days_until_expiration |
ERROR |
Error reading SSL certificate: |
Logs when there is an error reading the SSL certificate from the file. |
WD1010 |
SSL Certificate Days Remaining |
validate_license.py |
main |
INFO |
{days_remaining} days remaining until SSL certificate expiration. |
Logs the number of days remaining before the SSL certificate expires if more than 60 days are left. |
WD1011 |
SSL Certificate Renewal Reminder |
validate_license.py |
main |
WARNING |
Only {days_remaining} days remaining until SSL certificate expiration. Kindly renew your certificate. |
Warns the user to renew the SSL certificate if less than 60 days are remaining. |
WD1020 |
SSL Expiration Date Determination Failure |
validate_license.py |
main |
ERROR |
Unable to determine SSL certificate expiration date. |
Logs an error if the SSL certificate expiration date cannot be determined. |
WD2001 |
Enter License Validation |
validate_license.py |
validate_license |
DEBUG |
Entering validate_license function. |
Logs entry into the license validation function. |
WD2010 |
License Validation Success |
validate_license.py |
validate_license |
INFO |
License is valid, verification completed successfully. |
Logs successful verification of the license. |
WD2021 |
Invalid Auth Code |
validate_license.py |
validate_license |
ERROR |
Invalid Auth Code! |
Logs when the authentication code provided in the license key is invalid. |
WD2030 |
Invalid BMKEY Format |
validate_license.py |
validate_license |
ERROR |
Verification Failed! Invalid BMKEY Format! |
Logs when the format of the BMKEY is invalid, causing the license validation to fail. |
WD2040 |
License Verification Error |
validate_license.py |
validate_license |
ERROR |
Verification Error: {str(e)}! |
Logs errors encountered during the license verification process. |
WD2050 |
License Verification General Failure |
validate_license.py |
validate_license |
ERROR |
Verification Failed! Please use the provided key! |
Logs a general failure in license verification if the key used does not work as expected. |
WD3001 |
Cloud Mode Unsupported |
validate_license.py |
validate_license |
ERROR |
Cloud mode not supported! |
Logs when the licensing mode set to cloud, which is not supported. |
WD3002 |
Incorrect Licensing Mode |
validate_license.py |
validate_license |
ERROR |
Please select the appropriate licensing mode! |
Logs when an incorrect licensing mode is selected. |
WD2099 |
Exit License Validation |
validate_license.py |
validate_license |
DEBUG |
Exiting validate_license function. |
Logs exit from the license validation function. |
WD1001 |
Enter CheckLicenseView POST |
views.py |
post |
DEBUG |
Entering CheckLicenseView post method. |
Logs the entry into the post method of the CheckLicenseView class. |
WD1002 |
Invalid License Warning |
views.py |
post |
WARNING |
Invalid license. |
Logs a warning when the license check fails during the post method. |
WD3001 |
GUID Required Error |
views.py |
post |
ERROR |
GUID is required. |
Logs an error when the GUID is missing from the POST request data. |
WD3002 |
Hostname Required Error |
views.py |
post |
ERROR |
Hostname is required. |
Logs an error when the hostname is missing from the POST request data. |
WD3003 |
Controller Version Required Error |
views.py |
post |
ERROR |
Controller version is required. |
Logs an error when the controller version is missing from the POST request data. |
WD3004 |
IP Addresses List Required Error |
views.py |
post |
ERROR |
Controller IP Address list required |
Logs an error when the list of IP addresses is missing from the POST request data. |
WD2001 |
Invalid GUID Format Error |
views.py |
post |
ERROR |
Invalid GUID format. |
Logs an error when the GUID provided is not in a valid UUID format. |
WD2002 |
Device Limit Reached Warning |
views.py |
post |
WARNING |
Limit Reached! Please upgrade your license then Try Again |
Logs a warning when the number of active devices reaches the licensed limit. |
WD2003 |
New Controller Registered Info |
views.py |
post |
INFO |
Controller Registered! |
Logs the registration of a new controller including GUID, IP, hostname, version, and IP list details. |
WD1003 |
Controller Version Logged |
views.py |
post |
DEBUG |
Controller Version |
Logs the controller version being processed in the post method. |
WD1004 |
Exit CheckLicenseView POST |
views.py |
post |
DEBUG |
Exiting CheckLicenseView post method. |
Logs the exit from the post method of the CheckLicenseView class. |
WD1005 |
Enter GenerateGuidFile GET |
views.py |
get |
DEBUG |
Entering GenerateGuidFile get method. |
Logs the entry into the get method of the GenerateGuidFile class. |
WD1006 |
Invalid License Warning GET |
views.py |
get |
WARNING |
Invalid license. |
Logs a warning when the license check fails during the get method. |
WD1007 |
Exit GenerateGuidFile GET |
views.py |
get |
DEBUG |
Exiting GenerateGuidFile get method. |
Logs the exit from the get method of the GenerateGuidFile class. |
WD2101 |
SSL Certificate and Key Generated |
generate_ssl.py |
handle |
INFO |
SSL certificate and key generated: {cert_file}, {key_file} |
Logs the generation of SSL certificate and key files. |
WD2201 |
Scheduler Started |
start_scheduler.py |
handle |
INFO |
Scheduler Started |
Logs the start of the scheduler process. |