You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
817 B
42 lines
817 B
|
|
module.exports = {
|
|
"file": [
|
|
{
|
|
"tags": "httpErrors"
|
|
}
|
|
],
|
|
"console": [
|
|
{
|
|
"tags": "error",
|
|
"stdstream": "stderr"
|
|
},
|
|
{
|
|
"tags": "warn",
|
|
"stdstream": "stdout"
|
|
},
|
|
{
|
|
"tags": "info",
|
|
"stdstream": "stdout"
|
|
},
|
|
{
|
|
"tags": "verbose",
|
|
"stdstream": "stdout"
|
|
},
|
|
{
|
|
"tags": [ "all", "log" ],
|
|
"stdstream": "stdout"
|
|
}
|
|
],
|
|
"http": [
|
|
{
|
|
"tags": "none",
|
|
"url": process.env.MY_SERVER_URL,
|
|
"errorTags": "httpErrors",
|
|
"method": "POST",
|
|
"headers": {
|
|
"content-type": "text/plain"
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|