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 175056e commit 96f67a7Copy full SHA for 96f67a7
src/jupyter_pgadmin_proxy/__init__.py
@@ -4,6 +4,10 @@
4
import pwd
5
import getpass
6
7
+logging.basicConfig(level="INFO")
8
+logger = logging.getLogger("pgadmin")
9
+logger.setLevel("INFO")
10
+
11
12
def _get_env(port, base_url):
13
"""
@@ -44,9 +48,6 @@ def run_app():
44
48
This method is run by jupyter-server-proxy package to launch the Web app.
45
49
46
50
47
- logging.basicConfig(level="INFO")
- logger = logging.getLogger("pgadmin")
- logger.setLevel("INFO")
51
logger.info("Initializing Jupyter pgadmin Proxy")
52
53
icon_path = get_icon_path()
0 commit comments