Skip to content

Commit b8265bf

Browse files
committed
(ws) -q option imply info log level, not warning log level
1 parent e7c4f0b commit b8265bf

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All changes to this project will be documented in this file.
44

5+
## [10.1.7] - 2020-08-11
6+
7+
(ws) -q option imply info log level, not warning log level
8+
59
## [10.1.6] - 2020-08-06
610

711
(websocket server) Handle programmer error when the server callback is not registered properly (fix #227)

ixwebsocket/IXWebSocketVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
#pragma once
88

9-
#define IX_WEBSOCKET_VERSION "10.1.5"
9+
#define IX_WEBSOCKET_VERSION "10.1.7"

ws/ws.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ int main(int argc, char** argv)
507507

508508
if (quiet)
509509
{
510-
spdlog::set_level(spdlog::level::warn);
510+
spdlog::set_level(spdlog::level::info);
511511
}
512512

513513
// Cobra config

0 commit comments

Comments
 (0)