mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 12:28:10 +08:00
6 lines
193 B
Python
6 lines
193 B
Python
import os.path
|
|
import sys
|
|
import tempfile
|
|
LOG_DIRECTORY = os.path.join("/tmp" if sys.platform.startswith("darwin") else tempfile.gettempdir(), "raylogs")
|
|
LOG_TIMESTAMP = "{:%Y-%m-%d=%H:%M:%S}"
|