mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 09:42:46 +01:00
info to debug log level
This commit is contained in:
@@ -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))
|
||||||
|
|||||||
Reference in New Issue
Block a user