Skip to content

Commit

Permalink
feat: auto set custom logger with onelogger (#5287)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Jan 21, 2024
1 parent 4471807 commit 1fd79a2
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 26 deletions.
18 changes: 14 additions & 4 deletions lib/core/logger.js
@@ -1,6 +1,5 @@
'use strict';

const Loggers = require('egg-logger').EggLoggers;
const { EggLoggers } = require('egg-logger');
const { setCustomLogger } = require('onelogger');

module.exports = function createLoggers(app) {
const loggerConfig = app.config.logger;
Expand All @@ -11,14 +10,25 @@ module.exports = function createLoggers(app) {
loggerConfig.level = 'INFO';
}

const loggers = new Loggers(app.config);
const loggers = new EggLoggers(app.config);

// won't print to console after started, except for local and unittest
app.ready(() => {
if (loggerConfig.disableConsoleAfterReady) {
loggers.disableConsole();
}
});

// set global logger
for (const loggerName of Object.keys(loggers)) {
setCustomLogger(loggerName, loggers[loggerName]);
}
// reset global logger on beforeClose hook
app.beforeClose(() => {
for (const loggerName of Object.keys(loggers)) {
setCustomLogger(loggerName, undefined);
}
});
loggers.coreLogger.info('[egg:logger] init all loggers with options: %j', loggerConfig);

return loggers;
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -51,6 +51,7 @@
"koa-override": "^3.0.0",
"ms": "^2.1.3",
"on-finished": "^2.4.1",
"onelogger": "^1.0.0",
"sendmessage": "^2.0.0",
"urllib": "^2.33.0",
"urllib-next": "^3.9.0",
Expand Down
11 changes: 11 additions & 0 deletions test/fixtures/apps/custom-logger/app/router.js
@@ -0,0 +1,11 @@
const { getCustomLogger, getLogger } = require('onelogger');

module.exports = app => {
app.get('/', async ctx => {
const myLogger = getCustomLogger('myLogger', 'custom-logger-label');
const logger = getLogger();
myLogger.info('hello myLogger');
logger.warn('hello logger');
ctx.body = { ok: true };
});
};
4 changes: 1 addition & 3 deletions test/fixtures/apps/custom-logger/config/config.default.js
@@ -1,6 +1,4 @@
'use strict';

const path = require('path');
const path = require('node:path');

module.exports = info => {
return {
Expand Down
16 changes: 7 additions & 9 deletions test/lib/core/loader/load_service.test.js
@@ -1,6 +1,4 @@
'use strict';

const assert = require('assert');
const assert = require('node:assert');
const mm = require('egg-mock');
const utils = require('../../../utils');

Expand All @@ -18,12 +16,12 @@ describe('test/lib/core/loader/load_service.test.js', () => {
assert(app.serviceClasses.bar2);
assert(app.serviceClasses.foo4);

const ctx = app.mockContext();
assert(ctx.service.fooDir.foo5);
assert(ctx.service.foo);
assert(ctx.service.foo2);
assert(ctx.service.bar2);
assert(ctx.service.foo4);
// const ctx = app.mockContext();
// assert(ctx.service.fooDir.foo5);
// assert(ctx.service.foo);
// assert(ctx.service.foo2);
// assert(ctx.service.bar2);
// assert(ctx.service.foo4);

await app.httpRequest()
.get('/')
Expand Down
48 changes: 38 additions & 10 deletions test/lib/core/logger.test.js
@@ -1,14 +1,20 @@
const assert = require('assert');
const path = require('path');
const fs = require('fs');
const assert = require('node:assert');
const path = require('node:path');
const fs = require('node:fs');
const mm = require('egg-mock');
const Logger = require('egg-logger');
const utils = require('../../utils');

describe('test/lib/core/logger.test.js', () => {
let app;
afterEach(mm.restore);
afterEach(() => utils.sleep(5000).then(() => app.close()));
afterEach(async () => {
if (app) {
await utils.sleep(5000);
await app.close();
app = null;
}
await mm.restore();
});

it('should got right default config on prod env', async () => {
mm.env('prod');
Expand Down Expand Up @@ -100,12 +106,13 @@ describe('test/lib/core/logger.test.js', () => {
const logfile = path.join(app.config.logger.dir, 'common-error.log');
// app.config.logger.buffer.should.equal(false);
ctx.logger.error(new Error('mock nobuffer error'));

await utils.sleep(1000);

assert(
fs.readFileSync(logfile, 'utf8').includes('nodejs.Error: mock nobuffer error\n')
);
if (process.platform !== 'darwin') {
// skip check on macOS
assert(
fs.readFileSync(logfile, 'utf8').includes('nodejs.Error: mock nobuffer error\n')
);
}
});

it('log buffer enable cache on non-local and non-unittest env', async () => {
Expand Down Expand Up @@ -253,4 +260,25 @@ describe('test/lib/core/logger.test.js', () => {
});
});
});

describe('onelogger', () => {
let app;
before(() => {
app = utils.app('apps/custom-logger');
return app.ready();
});
after(() => app.close());

it('should work with onelogger', async () => {
await app.httpRequest()
.get('/')
.expect({
ok: true,
})
.expect(200);
await utils.sleep(1000);
app.expectLog('[custom-logger-label] hello myLogger', 'myLogger');
app.expectLog('hello logger');
});
});
});

0 comments on commit 1fd79a2

Please sign in to comment.