Explorar el Código

Merge branch 'master' of git://gitorious.org/~clebail/radicale/ares-radicale

Corentin Le Bail hace 15 años
padre
commit
8c21c39d30
Se han modificado 4 ficheros con 15 adiciones y 5 borrados
  1. 4 1
      config
  2. 1 1
      radicale/config.py
  3. 9 2
      radicale/log.py
  4. 1 1
      radicale/xmlutils.py

+ 4 - 1
config

@@ -53,7 +53,10 @@ LDAPAppend = ou=users,dc=exmaple,dc=dom
 folder = ~/.config/radicale/calendars
 
 [Logging]
-# Logging filename
+# Logging type
+# Value: syslog | file | stdout
+type = file
+# Logging filename (if needed)
 logfile = ~/.config/radicale/radicale.log
 # Log facility 10: DEBUG, 20: INFO, 30 WARNING, 40 ERROR, 50 CRITICAL
 facility = 50

+ 1 - 1
radicale/config.py

@@ -56,7 +56,7 @@ INITIAL_CONFIG = {
     "storage": {
         "folder": os.path.expanduser("~/.config/radicale/calendars")},
     "logging": {
-		"logfile": os.path.expanduser("~/.config/radicale/radicale.log"),
+		"type": "syslog",
 		"facility": 10},
 	"authLdap": {
 		"LDAPServer": "127.0.0.1",

+ 9 - 2
radicale/log.py

@@ -1,6 +1,7 @@
 # -*- coding: utf-8 -*-
 
 import logging, sys
+from logging.handlers import SysLogHandler
 from radicale import config
 
 class log:
@@ -8,8 +9,14 @@ class log:
 		self.logger=logging.getLogger("radicale")
 		self.logger.setLevel(config.get("logging", "facility"))
 		
-		handler=logging.FileHandler(config.get("logging", "logfile"))
-		
+		loggingType=config.get("logging", "type")
+		if loggingType == "stdout": 
+			handler=logging.StreamHandler(sys.stdout)
+		elif loggingType == "file": 
+			handler=logging.FileHandler(config.get("logging", "logfile"))
+		else:
+			handler=logging.handlers.SysLogHandler("/dev/log")
+			
 		formatter = logging.Formatter('%(name)s %(asctime)s %(levelname)s %(message)s')
 		handler.setFormatter(formatter)
 

+ 1 - 1
radicale/xmlutils.py

@@ -86,7 +86,7 @@ def propfind(path, xml_request, calendar, depth):
     """Read and answer PROPFIND requests.
 
     Read rfc4918-9.1 for info.
-
+    
     """
     # Reading request
     log.log(10, "Read and answer PROPFIND requests.")