odissey: print nodelay as bool value

This commit is contained in:
Dmitry Simonenko 2017-12-12 18:16:35 +03:00
parent 34412ef00d
commit 76450f2c0b
1 changed files with 2 additions and 1 deletions

View File

@ -848,7 +848,8 @@ void od_scheme_print(od_scheme_t *scheme, od_logger_t *logger, int routes_only)
od_log(logger, "config", NULL, NULL,
"readahead %d", scheme->readahead);
od_log(logger, "config", NULL, NULL,
"nodelay %d", scheme->nodelay);
"nodelay %d",
od_scheme_yes_no(scheme->nodelay));
od_log(logger, "config", NULL, NULL,
"keepalive %d", scheme->keepalive);
if (scheme->client_max_set)