mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
update
This commit is contained in:
parent
e2934a12c0
commit
b19418f43c
2 changed files with 5 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
* Add: display mtime_ns precision of storage folder with condition warning if too less
|
* Add: display mtime_ns precision of storage folder with condition warning if too less
|
||||||
* Improve: disable fsync during storage verification
|
* Improve: disable fsync during storage verification
|
||||||
* Improve: suppress duplicate log lines on startup
|
* Improve: suppress duplicate log lines on startup
|
||||||
|
* Contrib: logwatch config and script
|
||||||
|
|
||||||
## 3.3.2
|
## 3.3.2
|
||||||
* Fix: debug logging in rights/from_file
|
* Fix: debug logging in rights/from_file
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
# This file is related to Radicale - CalDAV and CardDAV server
|
# This file is related to Radicale - CalDAV and CardDAV server
|
||||||
# for logwatch (script)
|
# for logwatch (script)
|
||||||
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
||||||
|
#
|
||||||
|
# Detail levels
|
||||||
|
# >= 5: Logins, ResponseTimes
|
||||||
|
|
||||||
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
|
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
|
||||||
|
|
||||||
|
@ -98,7 +101,7 @@ if (keys %Requests) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Details >= 5 && keys %Requests) {
|
if ($Detail >= 5 && keys %Requests) {
|
||||||
print "\n**Successful login counters**\n";
|
print "\n**Successful login counters**\n";
|
||||||
printf "%-25s | %7s |\n", "Login", "cnt";
|
printf "%-25s | %7s |\n", "Login", "cnt";
|
||||||
print "-" x37 . "\n";
|
print "-" x37 . "\n";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue