Skip to content

Commit bfd4ab0

Browse files
authored
Hide error unpack error message
Hide error message that occurs when attributes are specified in the unsupported format
1 parent aba52ac commit bfd4ab0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reportportal_client/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def gen_attributes(rp_attributes):
3535
key, value = rp_attr.split(':')
3636
attr_dict = {'key': key, 'value': value}
3737
except ValueError as exc:
38-
logger.exception(str(exc))
38+
logger.debug(str(exc))
3939
attr_dict = {'value': rp_attr}
4040

4141
if all(attr_dict.values()):

0 commit comments

Comments
 (0)