Skip to content

Commit

Permalink
Revert "chore(logger): set basic config for module only"
Browse files Browse the repository at this point in the history
This reverts commit 5384431.
  • Loading branch information
sanjayankur31 committed Oct 15, 2024
1 parent 5384431 commit e58beaf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions neuroml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
from .__version__ import current_neuroml_version as current_neuroml_version
from .nml.nml import * # allows importation of all neuroml classes

logger = logging.getLogger(__name__)
logger.basicConfig(
logging.basicConfig(
format="libNeuroML >>> %(levelname)s - %(message)s",
level=logging.WARN,
)

logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)


Expand Down

0 comments on commit e58beaf

Please sign in to comment.