Skip to content

Commit

Permalink
Cleanup Logger
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Jan 19, 2024
1 parent b06f50d commit 31c3d85
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions nautilus_trader/common/logging.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@ cdef class Logger:
The minimum log level to write to stdout.
level_file : LogLevel, default ``OFF``
The minimum log level to write to a file.
file_logging : bool, default False
If logging to a file is enabled.
directory : str, optional
The path to the log file directory.
If ``None`` then will write to the current working directory.
Expand Down Expand Up @@ -140,7 +138,6 @@ cdef class Logger:
UUID4 instance_id = None,
LogLevel level_stdout = LogLevel.INFO,
LogLevel level_file = LogLevel.OFF,
bint file_logging = False,
str directory = None,
str file_name = None,
str file_format = None,
Expand Down
1 change: 0 additions & 1 deletion nautilus_trader/system/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ def __init__( # noqa (too complex)
level_file=log_level_from_str(logging.log_level_file)
if logging.log_level_file is not None
else LogLevel.OFF,
file_logging=logging.log_level_file is not None,
directory=logging.log_directory,
file_name=logging.log_file_name,
file_format=logging.log_file_format,
Expand Down

0 comments on commit 31c3d85

Please sign in to comment.