default should be warning for subprocesses not info (#4049)

This commit is contained in:
Khaleel Al-Adhami 2024-10-03 12:24:56 -07:00 committed by GitHub
parent 4b3d056212
commit 27bb7179d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -199,7 +199,7 @@ class LogLevel(str, Enum):
Returns:
The log level for the subprocess
"""
return self if self != LogLevel.DEFAULT else LogLevel.INFO
return self if self != LogLevel.DEFAULT else LogLevel.WARNING
# Server socket configuration variables