We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a584b5e commit c43f2d0Copy full SHA for c43f2d0
1 file changed
caldav/lib/vcal.py
@@ -93,10 +93,11 @@ def fix(event):
93
global fixup_error_loggings
94
fixup_error_loggings += 1
95
is_power_of_two = lambda n: not (n & (n - 1))
96
+ logger = logging.getLogger("caldav")
97
if is_power_of_two(fixup_error_loggings):
- log = logging.warning
98
+ log = logger.warning
99
else:
- log = logging.debug
100
+ log = logger.debug
101
102
log_message = [
103
"Ical data was modified to avoid compatibility issues",
0 commit comments