]> wagnertech.de Git - SVBaL.git/blob - python/eh_app/AWK/util.py
Merge branch 'master' of http://wagnertech.de/git/SVBaL
[SVBaL.git] / python / eh_app / AWK / util.py
1 '''
2 Utilities für EHUtil
3 '''
4 import syslog
5 from http import cookies
6
7 def schreibe_log(eintrag):
8    syslog.openlog("eh_app")
9    syslog.syslog(eintrag) 
10