We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9257c1c commit 009cd5bCopy full SHA for 009cd5b
maze/utils/plot_env_profiling.py
@@ -8,6 +8,7 @@
8
from matplotlib import pyplot as plt
9
10
logger = logging.getLogger(os.path.basename(__file__))
11
+logger.setLevel(logging.INFO)
12
13
14
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:
132
133
or act_conv_df is None
134
or wrapper_df is None
135
):
- logger.info('Events for environment profiling not recorded')
136
+ logger.debug('Events for environment profiling not recorded')
137
return
138
139
print('Running Environment profiling:')
0 commit comments