diff --git a/apis/websocket/docs/1_configuration.md b/apis/websocket/docs/1_configuration.md index 95e9f74..aead5c5 100644 --- a/apis/websocket/docs/1_configuration.md +++ b/apis/websocket/docs/1_configuration.md @@ -8,7 +8,7 @@ This is the default configuration (provided in [config.json](../config.json)): "port": 3000, "ocrConcurrentQueues": 1, "clientHeartbeatInterval": 60000, - "debugLogsInProduction": false + "consoleLogLevel": "log" } ``` diff --git a/apis/websocket/src/utils/getConfig.ts b/apis/websocket/src/utils/getConfig.ts index d26042e..90bf638 100755 --- a/apis/websocket/src/utils/getConfig.ts +++ b/apis/websocket/src/utils/getConfig.ts @@ -26,7 +26,7 @@ export type Config = Omit, '$sche export const defaultConfig: Config = { address: '127.0.0.1', - port: 80, + port: 8080, ocrConcurrentQueues: 1, clientHeartbeatInterval: 60000, consoleLogLevel: 'info',