diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-25 19:18:46 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-25 19:18:46 +0100 |
commit | d40cc993c199f58031cb4f25b9f9b21ac3b0bafe (patch) | |
tree | 97910f2ede501b49301c688c02fedf8dc473c30d | |
parent | 3beb16eb6f2f9ab4e165f10587d02f00824509ef (diff) |
Only print a debug message when not indexing an empty value, not info.
-rw-r--r-- | lesana/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lesana/types.py b/lesana/types.py index 349208f..87c933a 100644 --- a/lesana/types.py +++ b/lesana/types.py @@ -83,7 +83,7 @@ class LesanaType: if not to_index: return if not value: - logger.info( + logger.debug( "Not indexing empty value {}".format(value) ) return |