Package jason.stdlib

Class log

All Implemented Interfaces:
InternalAction, Serializable

@Manual(literal=".log(level,arg0[,arg1,...])", hint="used for logging messages", argsHint={"log level: severe, warning, info, fine, finer or finest (see java.util.logging)","the terms to be logged","the term to be concatenated with prior one [optional]"}, argsType={"term","term","term"}, examples=".log(info,\"Created artifact counter\"): prints to the log the referred message with level INFO.", seeAlso={"jason.stdlib.print","jason.stdlib.println"}) public class log extends DefaultInternalAction

Internal action: .log(level, args...).

Description: used for printing messages to the log

Examples:

  • .log(info,"Created artifact counter",N): prints to the log the referred message.
See Also: