RESTAS does not log anything, and it also disables Hunchentoot logging by
default. Logging is application specific, and you decide what to log and
where. For example, to restore Hunchentoot default behaviour:
(defclass my-acceptor (restas:restas-acceptor)
()
(:default-initargs
:message-log-destination *error-output*
:access-log-destination *error-output*))
(restas:start ... :acceptor-class 'my-acceptor)
Hunchentoot calls the ACCEPTOR-LOG-MESSAGE method via its helper LOG-MESSAGE*.
You can define this method for 'my-acceptor to augment default behaviour, and
you can call that helper to log your own messages.