Lines Matching refs:error
177 error: true,
209 // in a error loging the type argument is the error object.
210 var error = type;
211 type = "error";
229 if ( type == "error" && this.mustLog.error ) {
230 this.__log__[logSize] = this.__logError( error, msg )
242 InkWeb.__logError = function ( error, msg ) {
243 return { type:"error", date:new Date(), msg:msg, error:error, happens:1 };
258 ** formatError: to format the error log itens.
266 ** $error: the error text (if this is a error item)
273 if (!conf.formatError) { conf.formatError = "$F $T - ERROR - $logmsg - Happens $times.\n$error" }
291 var line = ( (item.type=="error")? conf.formatError : conf.format );
297 .replace( /\$error/g, (item.error)? item.error.message : "" )
332 '.error { color: #C00 }' +
353 formatError: '<tr class="error $oddeven" title="ERROR">' +
355 '<tr class="error $oddeven"><td colspan="3"><code>$error</code></td></tr>',