mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
7 lines
151 B
Python
7 lines
151 B
Python
|
|
from test.playwright.helpers.env_utils import env_bool
|
||
|
|
|
||
|
|
|
||
|
|
def debug(msg: str) -> None:
|
||
|
|
if env_bool("PW_DEBUG_DUMP"):
|
||
|
|
print(msg, flush=True)
|