adapted to new logging facility of httpd

This commit is contained in:
interp 2002-08-26 08:26:08 +00:00
parent a6f10bc87d
commit 1236b3dccd
1 changed files with 4 additions and 6 deletions

View File

@ -11,11 +11,8 @@
(doit (lambda ()
((runprogram prog) arglist))))
(and (http-log "----------------------------------------~%")
(http-log " Programmname : ~s~%" prog)
(http-log " search : ~s~%" search)
(http-log " Argumente : ~s~%" arglist)
(http-log "----------------------------------------~%")
(and (http-syslog (syslog-level debug)
"scheme-program-handler:~% Programmname : ~s~% search : ~s~% Argumente : ~s~%" prog search arglist)
(let ((request-method (request:method req)))
(if (or (string=? request-method "GET")
@ -28,7 +25,8 @@
(define (runprogram progstring)
(let* ( (progsymbol (read (make-string-input-port progstring)))
(progsymbol1 (string->symbol progstring)))
(and (http-log "[]run-program ~s ~s ~s~%" progstring progsymbol progsymbol1)
(and (http-syslog (syslog-level debug)
"[]run-program ~s ~s ~s~%" progstring progsymbol progsymbol1)
(eval progsymbol (interaction-environment)))))
(define (split-and-decode-search-spec s)