Skip to content

Commit

Permalink
Revert "fix(ci): fixed ci test with fallback log level"
Browse files Browse the repository at this point in the history
This reverts commit dd09502.

Signed-off-by: Logan Nguyen <[email protected]>
  • Loading branch information
quiet-node committed Feb 5, 2025
1 parent dd09502 commit fa189dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { TracerType, TYPES, Validator } from './validator';

const mainLogger = pino({
name: 'hedera-json-rpc-relay',
level: ConfigService.get('LOG_LEVEL') || 'trace',
level: ConfigService.get('LOG_LEVEL'),
transport: {
target: 'pino-pretty',
options: {
Expand Down
2 changes: 1 addition & 1 deletion packages/ws-server/src/webSocketServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { getBatchRequestsMaxSize, getWsBatchRequestsEnabled, handleConnectionClo

const mainLogger = pino({
name: 'hedera-json-rpc-relay',
level: ConfigService.get('LOG_LEVEL') || 'trace',
level: ConfigService.get('LOG_LEVEL'),
transport: {
target: 'pino-pretty',
options: {
Expand Down

0 comments on commit fa189dd

Please sign in to comment.