From c02ccc2fe28127f8cb7540fbbd7c53d083a6ef39 Mon Sep 17 00:00:00 2001 From: Ivan Ivanov Date: Tue, 5 Sep 2023 18:28:46 -0700 Subject: [PATCH] add documentation --- copylot/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/copylot/__init__.py b/copylot/__init__.py index 880ce1f..9c1f759 100644 --- a/copylot/__init__.py +++ b/copylot/__init__.py @@ -17,6 +17,8 @@ def enable_logging( ---------- log_filepath : str Path to log file, by default 'copylot_debug_log.txt' + level : int + Logging level, by default logging.DEBUG """ # create file handler which logs debug messages fh = logging.FileHandler(log_filepath)