Did you know ... | Search Documentation: |
Predicate nolog_post_content_type/1 |
:- use_module(library(http/http_log)).
Content-type
header. If the
hook succeeds, the POST data is not logged. For example, to stop logging
anything but application/json messages:
:- multifile http_log:nolog_post_content_type/1. http_log:nolog_post_content_type(Type) :- Type \= (application/json).
Type | is a term MainType/SubType |