Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion satpy/readers/core/netcdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def get_accessor_and_filehandle_from_engines(filename, *engines):
"""Choose an accessor from the first possible engine, and return in along with the file handle."""
for engine in engines:
try:
LOG.info(f"Trying reading nc file with {engine} engine…")
LOG.debug(f"Trying reading nc file with {engine} engine…")
return get_accessor_and_filehandle_from_engine(filename, engine)
except Exception as err:
LOG.warning(f"Cannot use {engine} engine to read nc file.")
Expand Down
Loading