Files
ray/lib/python/ray/config.py
T
2016-06-30 16:29:24 -07:00

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}"