diff options
author | zhukoff-pavel <zhukoff-pavel@yandex-team.com> | 2023-09-14 11:57:01 +0300 |
---|---|---|
committer | zhukoff-pavel <zhukoff-pavel@yandex-team.com> | 2023-09-14 12:12:24 +0300 |
commit | 38361b57b2bb5c5d00fc4ac7237c4adfc679bde9 (patch) | |
tree | 5ce47fdb4ad193ebe808bfe67a2c2b17aa52214b /library/python/strings/strings.py | |
parent | e19cc91cb397cdec4e9ec46165f5086969f7bccc (diff) | |
download | ydb-38361b57b2bb5c5d00fc4ac7237c4adfc679bde9.tar.gz |
[library/python/string] Change message type to debug
Diffstat (limited to 'library/python/strings/strings.py')
-rw-r--r-- | library/python/strings/strings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/strings/strings.py b/library/python/strings/strings.py index 4a256bf4c3..f5fa2d32c6 100644 --- a/library/python/strings/strings.py +++ b/library/python/strings/strings.py @@ -111,7 +111,7 @@ def locale_encoding(): logger.debug('Cannot get system locale: %s', e) return None except ValueError as e: - logger.warn('Cannot get system locale: %s', e) + logger.debug('Cannot get system locale: %s', e) return None |