Unverified Commit 74540961 authored by Wentao Ye's avatar Wentao Ye Committed by GitHub
Browse files

[Log] Log once in local node by default (#37568)


Signed-off-by: default avataryewentao256 <zhyanwentao@126.com>
parent fb8b5e05
...@@ -103,7 +103,6 @@ def _should_log_with_scope(scope: LogScope) -> bool: ...@@ -103,7 +103,6 @@ def _should_log_with_scope(scope: LogScope) -> bool:
from vllm.distributed.parallel_state import is_local_first_rank from vllm.distributed.parallel_state import is_local_first_rank
return is_local_first_rank() return is_local_first_rank()
# default "process" scope: always log
return True return True
...@@ -116,9 +115,7 @@ class _VllmLogger(Logger): ...@@ -116,9 +115,7 @@ class _VllmLogger(Logger):
`intel_extension_for_pytorch.utils._logger`. `intel_extension_for_pytorch.utils._logger`.
""" """
def debug_once( def debug_once(self, msg: str, *args: Hashable, scope: LogScope = "local") -> None:
self, msg: str, *args: Hashable, scope: LogScope = "process"
) -> None:
""" """
As [`debug`][logging.Logger.debug], but subsequent calls with As [`debug`][logging.Logger.debug], but subsequent calls with
the same message are silently dropped. the same message are silently dropped.
...@@ -127,7 +124,7 @@ class _VllmLogger(Logger): ...@@ -127,7 +124,7 @@ class _VllmLogger(Logger):
return return
_print_debug_once(self, msg, *args) _print_debug_once(self, msg, *args)
def info_once(self, msg: str, *args: Hashable, scope: LogScope = "process") -> None: def info_once(self, msg: str, *args: Hashable, scope: LogScope = "local") -> None:
""" """
As [`info`][logging.Logger.info], but subsequent calls with As [`info`][logging.Logger.info], but subsequent calls with
the same message are silently dropped. the same message are silently dropped.
...@@ -137,7 +134,7 @@ class _VllmLogger(Logger): ...@@ -137,7 +134,7 @@ class _VllmLogger(Logger):
_print_info_once(self, msg, *args) _print_info_once(self, msg, *args)
def warning_once( def warning_once(
self, msg: str, *args: Hashable, scope: LogScope = "process" self, msg: str, *args: Hashable, scope: LogScope = "local"
) -> None: ) -> None:
""" """
As [`warning`][logging.Logger.warning], but subsequent calls with As [`warning`][logging.Logger.warning], but subsequent calls with
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment