diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-03-19 13:33:56 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-03-19 13:33:56 -0400 |
commit | 0229d5f81862e8ef6765c6e1e7e6cd78a5a2b4cc (patch) | |
tree | 6facdcd860586d3d33ce8421e964770ced87e366 /src/core/or/dos.c | |
parent | 2dfa19a871d8f54a91881475820e82246ed66132 (diff) | |
download | tor-0229d5f81862e8ef6765c6e1e7e6cd78a5a2b4cc.tar.gz tor-0229d5f81862e8ef6765c6e1e7e6cd78a5a2b4cc.zip |
Add "Heartbeat" to the start of several heartbeat messages.
Closes #40322.
Diffstat (limited to 'src/core/or/dos.c')
-rw-r--r-- | src/core/or/dos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/or/dos.c b/src/core/or/dos.c index a5ea53bb3e..e8652c901e 100644 --- a/src/core/or/dos.c +++ b/src/core/or/dos.c @@ -819,7 +819,8 @@ dos_log_heartbeat(void) char *msg = smartlist_join_strings(elems, ", ", 0, NULL); - log_notice(LD_HEARTBEAT, "DoS mitigation since startup: %s.", msg); + log_notice(LD_HEARTBEAT, + "Heartbeat: DoS mitigation since startup: %s.", msg); tor_free(msg); SMARTLIST_FOREACH(elems, char *, e, tor_free(e)); |