mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-01 22:40:47 +08:00
14 lines
432 B
JavaScript
14 lines
432 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
format : [
|
|
"{{timestamp}} <{{title}}> {{message}} (in {{file}}:{{line}})", //default format
|
|
{
|
|
error : "{{timestamp}} <{{title}}> {{message}} (in {{file}}:{{line}})\nCall Stack:\n{{stack}}" // error format
|
|
}
|
|
],
|
|
dateformat : "HH:MM:ss.L",
|
|
preprocess : function(data){
|
|
data.title = data.title.toUpperCase();
|
|
}
|
|
} |