mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Updated logs to use debug rather than info
no-issue This reduces noise in moleculer logs
This commit is contained in:
parent
2802e1eb03
commit
299be9cc2e
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ async function createServiceProxy(ctx, serviceName) {
|
||||||
}).map(action => action.action.rawName);
|
}).map(action => action.action.rawName);
|
||||||
|
|
||||||
return serviceMethods.reduce((serviceProxy, methodName) => {
|
return serviceMethods.reduce((serviceProxy, methodName) => {
|
||||||
ctx.broker.logger.info(`Creating proxy ${serviceName}.${methodName}`);
|
ctx.broker.logger.debug(`Creating proxy ${serviceName}.${methodName}`);
|
||||||
return Object.assign(serviceProxy, {
|
return Object.assign(serviceProxy, {
|
||||||
[methodName]: proxy(ctx, serviceName, methodName)
|
[methodName]: proxy(ctx, serviceName, methodName)
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue