Skip to content

Commit 009cd5b

Browse files
author
EnliteAI Bot
committed
FIX: Update env profiling output logging level
1 parent 9257c1c commit 009cd5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

maze/utils/plot_env_profiling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from matplotlib import pyplot as plt
99

1010
logger = logging.getLogger(os.path.basename(__file__))
11+
logger.setLevel(logging.INFO)
1112

1213

1314
def read_event_log(input_dir: str, event_name: str) -> Union[pd.DataFrame, None]:
@@ -132,7 +133,7 @@ def plot_env_profiling(cur_dir: str) -> None:
132133
or act_conv_df is None
133134
or wrapper_df is None
134135
):
135-
logger.info('Events for environment profiling not recorded')
136+
logger.debug('Events for environment profiling not recorded')
136137
return
137138

138139
print('Running Environment profiling:')

0 commit comments

Comments
 (0)