Skip to content

Commit 93de590

Browse files
remove excessive logs in production run by changing from DEBUG to INFO (#134)
1 parent 9e7fc32 commit 93de590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jetstream/core/orchestrator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
import numpy as np
9999

100100
root = logging.getLogger()
101-
root.setLevel(logging.DEBUG)
101+
root.setLevel(logging.INFO)
102102

103103
handler = logging.StreamHandler(sys.stdout)
104-
handler.setLevel(logging.DEBUG)
104+
handler.setLevel(logging.INFO)
105105
formatter = logging.Formatter(
106106
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
107107
)

0 commit comments

Comments
 (0)