(cobra bots) change an error log to a warning log when reconnecting because no messages were received for a minute
This commit is contained in:
parent
d525c28907
commit
49995e32f0
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
All changes to this project will be documented in this file.
|
All changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [10.4.2] - 2020-09-18
|
||||||
|
|
||||||
|
(cobra bots) change an error log to a warning log when reconnecting because no messages were received for a minute
|
||||||
|
|
||||||
## [10.4.1] - 2020-09-18
|
## [10.4.1] - 2020-09-18
|
||||||
|
|
||||||
(cobra connection and bots) set an HTTP header when connecting to help with debugging bots
|
(cobra connection and bots) set an HTTP header when connecting to help with debugging bots
|
||||||
|
@ -130,7 +130,7 @@ namespace ix
|
|||||||
ss << "no messages received or sent for "
|
ss << "no messages received or sent for "
|
||||||
<< heartBeatTimeout << " seconds, reconnecting";
|
<< heartBeatTimeout << " seconds, reconnecting";
|
||||||
|
|
||||||
CoreLogger::error(ss.str());
|
CoreLogger::warn(ss.str());
|
||||||
stalledConnection = true;
|
stalledConnection = true;
|
||||||
}
|
}
|
||||||
state = currentState;
|
state = currentState;
|
||||||
|
@ -6,4 +6,4 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define IX_WEBSOCKET_VERSION "10.4.1"
|
#define IX_WEBSOCKET_VERSION "10.4.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user