built-in method
message_prefix_stream/4
ï
Descriptionï
message_prefix_stream(Kind, Component, Prefix, Stream)
User-defined hook method for specifying the default prefix and stream for printing a message for a given kind and component. This method is declared in the logtalk built-in object as a public, multifile, and dynamic predicate.
The prefix is printed for each line in the list of tokens generated by the
message tokenization (new lines are specified using the nl
token; see
the documentation of the logtalk built-in object
for details).
Modes and number of proofsï
message_prefix_stream(?nonvar, ?nonvar, ?atom, ?stream_or_alias) - zero_or_more
Errorsï
(none)
Examplesï
:- multifile(logtalk::message_prefix_stream/4).
:- dynamic(logtalk::message_prefix_stream/4).
logtalk::message_prefix_stream(information, core, '% ', user_output).