Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit e9ddf03

Browse files
committed
changing log level to info
1 parent 81c2cae commit e9ddf03

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

config/logger.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ exports.default = {
1212
logger.transports.push(function (api, winston) {
1313
return new (winston.transports.Console)({
1414
colorize: true,
15-
level: 'debug',
15+
level: 'info',
1616
timestamp: api.utils.sqlDateTime,
1717
json: false
1818
});
@@ -31,7 +31,7 @@ exports.default = {
3131
logger.transports.push(function (api, winston) {
3232
return new (winston.transports.File)({
3333
filename: api.config.general.paths.log[0] + '/actionhero-worker.log',
34-
level: 'debug',
34+
level: 'info',
3535
colorize: true,
3636
timestamp: api.utils.sqlDateTime,
3737
json: false

local/docker-compose.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: '2'
2+
services:
3+
tc-api:
4+
image: "node"
5+
ports:
6+
- "7777:7777"

0 commit comments

Comments
 (0)