mirror of
https://github.com/clearml/clearml
synced 2025-02-07 13:23:40 +00:00
Changed log warning to debug
This commit is contained in:
parent
ac9aba9242
commit
f8fa394f43
@ -76,7 +76,9 @@ class Detector(object):
|
||||
return get_command_output(command, path)
|
||||
|
||||
except (CalledProcessError, UnicodeDecodeError) as ex:
|
||||
_logger.warning(
|
||||
_logger.warning("Can't get {} information for {} repo in {}".format(name, self.type_name, path))
|
||||
# full details only in debug
|
||||
_logger.debug(
|
||||
"Can't get {} information for {} repo in {}: {}".format(
|
||||
name, self.type_name, path, str(ex)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user