Skip to content

Commit

Permalink
logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
FaroutYLq committed Apr 29, 2024
1 parent 16b0297 commit e95aa4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion saltax/contexts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from utilix import xent_collection


logging.basicConfig(handlers=[logging.StreamHandler()])
logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()])
log = logging.getLogger("fuse.context")


Expand Down
2 changes: 1 addition & 1 deletion saltax/plugins/f_raw_records.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

export, __all__ = strax.exporter()

logging.basicConfig(handlers=[logging.StreamHandler()])
logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()])
log = logging.getLogger("fuse.detector_physics.csv_input")


Expand Down
2 changes: 1 addition & 1 deletion saltax/plugins/s_raw_records.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)

export, __all__ = strax.exporter()
logging.basicConfig(handlers=[logging.StreamHandler()])
logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()])
log = logging.getLogger("wfsim.interface")
log.setLevel("WARNING")

Expand Down

0 comments on commit e95aa4a

Please sign in to comment.