Skip to content

Commit 17fcff1

Browse files
authored
Print note when listen is delayed (#12452)
* Print note when listen is delayed * Reword notes
1 parent eafc477 commit 17fcff1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/traffic_server/traffic_server.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ CB_After_Cache_Init()
829829
// The delay_listen_for_cache value was 1, therefore the main function
830830
// delayed the call to start_HttpProxyServer until we got here. We must
831831
// call accept on the ports now that the cache is initialized.
832-
Dbg(dbg_ctl_http_listen, "Delayed listen enable, cache initialization finished");
832+
Note("Enabling listen, cache initialization finished");
833833
start_HttpProxyServer();
834834
emit_fully_initialized_message();
835835
}
@@ -2281,7 +2281,7 @@ main(int /* argc ATS_UNUSED */, const char **argv)
22812281
// Delay only if config value set and flag value is zero
22822282
// (-1 => cache already initialized)
22832283
if (delay_p && ink_atomic_cas(&delay_listen_for_cache, 0, 1)) {
2284-
Dbg(dbg_ctl_http_listen, "Delaying listen, waiting for cache initialization");
2284+
Note("Delaying listen, waiting for cache initialization");
22852285
} else {
22862286
// If we've come here, either:
22872287
//

0 commit comments

Comments
 (0)