Skip to content

Commit

Permalink
Lower debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
domna committed Feb 7, 2024
1 parent 9ccb7b4 commit 0c6fb6c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pynxtools/dataconverter/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@
# limitations under the License.
#
"""Verifies a nxs file"""
import logging
import os
import sys
from typing import Dict, Optional, Union
import xml.etree.ElementTree as ET
import logging
from h5py import File, Dataset, Group
from typing import Dict, Optional, Union

import click
from h5py import Dataset, File, Group

from pynxtools.dataconverter import helpers
from pynxtools.dataconverter.template import Template
Expand All @@ -31,7 +32,7 @@
logger = logging.getLogger(__name__)

DEBUG_TEMPLATE = 9
logger.setLevel(DEBUG_TEMPLATE)
logger.setLevel(logging.INFO)
logger.addHandler(logging.StreamHandler(sys.stdout))


Expand Down

0 comments on commit 0c6fb6c

Please sign in to comment.