Поиск |
[software] [catdoc] [tcl] [geography] [old things] | |||||||||||||||||
TclSyslogI was highly surprised that TclX package, which provides a lot of Unix-specific functionality for Tcl doesn't provide interface to syslog.So, I've designed my own package. I've not touched this package since 2000. It just works. Documentation
package require syslog syslog ?options? priority mesageSyslog command logs message to system syslog facility. By default, it uses syslog facility user and content of Tcl variable argv0 as identifier. It can be overriden by options of syslog command. Options available
It is also possible to call syslog just with options, without priority and
message.
Facilities and priorities are spelled in lowercase letter same (hopefully)
way as in There are two version of this extension maintained - 1.x and 2.x. 1.x is for old Tcl, which is not Unicode inside. They don't use stubs interface and use string-based commmands. 2.x is Unicode-aware. It means that it is objectified, and it converts messages and ident strings from Unicode to current system encoding before sending them to library functions. DownloadVersion 1.1 For tcl 7.x and 8.0.xVersion 2.1 For tcl 8.1 and above - stubs-enabled and Unicode aware. Version 2.0 For tcl 8.1 and above - stubs-enabled and Unicode aware. GIT accessTclSyslog can also be obtained from my GIT repository via http protocol.git clone http://www.wagner.pp.ru/git/oss/tclsyslog.gitSee also GitWeb page Bug tracking systemAccess to bug tracking system allowed only via https. See my cvstrac page for instructions and certificate. |