#lang scribble/doc @(require scribble/manual) @title{Logging} Simple logging facility, for when standard output is otherwise in use. @scheme[(require (prefix-in log: (planet synx/log))) (log:log "test") (log:error "something went wrong ~a" 23) (log:warning "danger ~a robinson!" "will") (log:info "same as log:log")] It does everything on stderr. If you want syslog functionality, @scheme[(with-error-to-file "/var/log/messages" #:exists 'append ...)] :p