From: Christian Weiske Date: Sun, 30 Nov 2014 19:57:38 +0000 (+0100) Subject: talk about loggers X-Git-Tag: v1.0.0~6 X-Git-Url: https://git.cweiske.de/auerswald-callnotifier.git/commitdiff_plain/884e4dd0464c9bf08d94f4c197e1f2835aca30d0 talk about loggers --- diff --git a/.gitignore b/.gitignore index cf46afe..8584adc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ data/callnotifier.config.php data/cwe* data/dumps +README.html diff --git a/README.rst b/README.rst index f4a7038..98b81b6 100644 --- a/README.rst +++ b/README.rst @@ -122,10 +122,29 @@ Example configuration:: ); -==== -TODO -==== -- multiple notification methods: XMPP, dreambox, notify-send +Logger +====== +Logger handle react on events like incoming or outgoing calls, +if they start or finish, or on any data received from the ISDN bus. + +Available logger: + +CallDb + Log calls in a SQL database +CallDreambox + Send messages on incoming calls to the DreamBox satellite + receiver +CallEcho + Log to the command line. Helpful for debugging. +CallFile + Log finished calls into a text file +CallFileTop + Log finished calls into a text file, newest on top +CallNotifySend + Use the unix ``notify-send`` command on starting and finished calls +CallSendXmpp + Send an XMPP headline message for incoming calls to one or multiple + users. ============