info to debug log level

This commit is contained in:
Josh Patterson
2025-05-06 10:13:02 -04:00
parent a167e5e520
commit a595bc4b31

View File

@@ -594,7 +594,7 @@ def validate_vrt_license() -> bool:
"for more information about purchasing a license to enable this feature.") "for more information about purchasing a license to enable this feature.")
return False return False
log.info("License validation successful") log.debug("License validation successful")
return True return True
except Exception as e: except Exception as e:
@@ -887,7 +887,7 @@ def start(interval: int = DEFAULT_INTERVAL,
- Admin must restart service to clear lock - Admin must restart service to clear lock
- Error-level logging used for lock issues - Error-level logging used for lock issues
""" """
log.info("Starting virtual node manager engine") log.debug("Starting virtual node manager engine")
if not validate_vrt_license(): if not validate_vrt_license():
return return
@@ -908,7 +908,7 @@ def start(interval: int = DEFAULT_INTERVAL,
# Clean shutdown - release lock # Clean shutdown - release lock
log.debug("Virtual node manager releasing lock") log.debug("Virtual node manager releasing lock")
engine_lock.release() engine_lock.release()
log.info("Virtual node manager completed successfully") log.debug("Virtual node manager completed successfully")
except Exception as e: except Exception as e:
log.error("Error in virtual node manager - lock will remain until cleared: %s", str(e)) log.error("Error in virtual node manager - lock will remain until cleared: %s", str(e))