Skip to content

Commit 6c8ae32

Browse files
committed
update logpipe and fix some formatting
1 parent 19b7cf4 commit 6c8ae32

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docker-compose.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,17 @@ services:
8080
cpu_shares: "${CPU_SHARES_IMPORTANT}"
8181
logpipe:
8282
container_name: logpipe
83-
image: ghcr.io/riccardobl/logpipe:0.0.5
83+
image: ghcr.io/riccardobl/logpipe:0.0.6
8484
restart: unless-stopped
8585
healthcheck:
8686
<<: *healthcheck
8787
test: ["CMD", "curl", "-f", "http://localhost:7068/health"]
8888
expose:
8989
- "7068:7068"
90+
environment:
91+
- LOGPIPE_DEBUG=true
9092
ports:
91-
- "7068"
93+
- "7068:7068"
9294
tmpfs:
9395
- /tmp
9496
cpu_shares: "${CPU_SHARES_LOW}"

lib/logger.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ export class ConsoleLogAttachment extends LogAttachment {
5555
const second = ('0' + date.getSeconds()).slice(-2)
5656
head += `[${year}-${month}-${day} ${hour}:${minute}:${second}] `
5757
}
58-
head += `[${logger.name}] `
58+
head += `[${logger.name}]`
5959
if (!isBrowser) {
60-
head += `[${LogLevel[level]}] `
60+
head += ` [${Object.entries(LogLevel).find(([k, v]) => v === level)[0]}]`
6161
}
6262

6363
const tail = tags.length ? ` ${tags.join(',')}` : ''

0 commit comments

Comments
 (0)