Lines Matching refs:msg
23 * Constant for the function {@link msg()}
48 * {@link msg()} constant
79 public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = "support", \Exception $e = null)
121 * @param null|string $msg - may be null always this is the default if a variable is not initialized.
126 static function log2file(?string $msg, int $logLevel = self::LVL_MSG_ERROR, $canonical = null, \Exception $e = null)
130 self::messageNotEmpty($msg);
132 $msg = $e->getMessage();
142 $msg = $prefix . ' - ' . $msg;
159 fwrite($fh, date('c') . $sep . self::LVL_NAME[$logLevel] . $sep . $msg . $sep . $INPUT->server->str('REMOTE_ADDR') . $sep . $id . "\n");
164 self::throwErrorIfTest($logLevel, $msg, $e);
253 msg($htmlMsg, $dokuWikiLevel, '', '', $allow);
343 self::msg($message, LogUtility::LVL_MSG_ERROR, $canonical, $e);
348 self::msg($message, LogUtility::LVL_MSG_WARNING, $canonical, $e);
353 self::msg($message, LogUtility::LVL_MSG_INFO, $canonical, $e);
418 self::msg($message, LogUtility::LVL_MSG_DEBUG, $canonical, $e);