Skip to content

Commit

Permalink
removed logger debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeAdachi committed Mar 23, 2022
1 parent 2e4c49f commit f4acc1b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/whylogs/viz/browser_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def profile_viewer(profiles: List[DatasetProfile] = None, reference_profiles: Li
except ImportError as e:
Compiler = None
logger.debug(str(e))
logger.debug("Unable to load pybars; install pybars3 to load profile directly from the current session ")
logger.warning("Unable to load pybars; install pybars3 to load profile directly from the current session ")
index_path = os.path.abspath(os.path.join(_MY_DIR, os.pardir, "viewer/templates", "index.html"))
webbrowser.open_new_tab(f"file:{index_path}#")
Expand Down
1 change: 0 additions & 1 deletion src/whylogs/viz/jupyter_notebook_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def __get_compiled_template(self, template_name):
except ImportError as e:
Compiler = None
logger.debug(str(e))
logger.debug("Unable to load pybars; install pybars3 to load profile directly from the current session ")
logger.warning("Unable to load pybars; install pybars3 to load profile directly from the current session ")

with open(template_path, "r") as file_with_template:
Expand Down

0 comments on commit f4acc1b

Please sign in to comment.