From b1dffffb5cc282876c23d83da46f2f309d687fcb Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Mon, 9 Nov 2020 22:27:06 +0100 Subject: [PATCH] change README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ec69392..3405b94 100644 --- a/README.md +++ b/README.md @@ -186,16 +186,16 @@ The following loglevels are available: ```python # Configure global loglevel setLoglevel(INFO) -``` -Configure loglevel per *logname*. -```python + +# Configure loglevel per logname. setLoglevel(INFO, logname="daemon") ``` ### Syslog Send log messages to the local syslog server. ```python -# Enable logging to local syslog server (/dev/log). Use *address* to specify a different target. +# Enable logging to local syslog server (/dev/log). +# Use *address* to specify a different target. enableSyslog(loglevel=INFO, address="/dev/log") # Enable syslog per logname