Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add logger for decoder/encoder options #111

Merged
merged 1 commit into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/client/connection/rpc.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,13 @@ class RpcConnection extends Base {
sentReqs: this._sentReqs,
classCache: this.options.classCache || new Map(),
address: this.address,
logger: this.options.logger,
};
const decodeOpts = {
sentReqs: this._sentReqs,
classCache: this.options.classCache || new Map(),
address: this.address,
logger: this.options.logger,
};

// 针对 classMap 针对 hessian, proto 针对 protobuf
Expand Down
2 changes: 2 additions & 0 deletions lib/server/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ class RpcConnection extends Base {
const encodeOpts = {
sentReqs: this._sentReqs,
classCache: this.options.classCache || new Map(),
logger: this.options.logger,
};
const decodeOpts = {
sentReqs: this._sentReqs,
classCache: this.options.classCache || new Map(),
logger: this.options.logger,
};
// 针对 classMap 针对 hessian, proto 针对 protobuf
// 因为可能需要同时支持,所以分开设置(一般通过全局设置,所以这里要判断是否有值)
Expand Down