racket/collects/meta/drdr/notify.rkt
2010-11-11 15:59:50 -07:00

6 lines
197 B
Racket

#lang racket
(define (notify! fmt . args)
(log-info (format "[~a] ~a" (current-seconds) (apply format fmt args))))
(provide/contract
[notify! ((string?) () #:rest (listof any/c) . ->* . void)])