User Tools

Site Tools


Action disabled: resendpwd
write_to_logs

Writing to communication log

There are 4 functions for writing to the communication log: INFO, ERROR, DEBUG, TRACE

The functions add the message with the their respective detail level to communication log. Function returns 1 if any error occurred and 0 on success.

local result = getResult()
 
if (not result) then 
   ERROR("Nil was calculated in the getResult")
else 
   if (result > 100) then 
      DEBUG("The result is out of range...")
   end 
end 

Customize log output

You can implement your version of log output function with more complex formatting (e.g. table output or json output), wrapping the basics functions into your Lua code (see the example).

Writing to message log

AddInfoMessage | AddWarningMessage | AddAlertMessage(message, userId)

The functions add the text message with their respective level to the messages log. userId is the user ID on whose behalf the message should be added. Returns 1 if an error occurred and 0 if successful.

write_to_logs.txt ยท Last modified: 2021/07/23 15:06 by emozolyak

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki