mirror of
https://github.com/clearml/clearml
synced 2025-06-26 18:16:07 +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)
|
return get_command_output(command, path)
|
||||||
|
|
||||||
except (CalledProcessError, UnicodeDecodeError) as ex:
|
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(
|
"Can't get {} information for {} repo in {}: {}".format(
|
||||||
name, self.type_name, path, str(ex)
|
name, self.type_name, path, str(ex)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user