diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-13 21:12:33 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-13 21:12:33 +0000 |
commit | 306f7d320cd75c5981fba18239cbbe8be5123286 (patch) | |
tree | 9a4c1ad496a6fdfc50eda65138270c2f8ca8d53c /src/or/main.c | |
parent | 335a00a02a14635c5e298247c021194187137774 (diff) | |
download | tor-306f7d320cd75c5981fba18239cbbe8be5123286.tar tor-306f7d320cd75c5981fba18239cbbe8be5123286.tar.gz |
make a notice-level log make more sense.
svn:r4547
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 4805e2633..9e7dd0653 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -460,7 +460,7 @@ conn_close_if_marked(int i) return 0; } if (connection_wants_to_flush(conn)) { - log_fn(LOG_NOTICE,"Conn (addr %s, fd %d, type %s, state %d) is being closed, but there are still %d bytes we can't write. (Marked at %s:%d)", + log_fn(LOG_NOTICE,"Something wrong with your network connection? Conn (addr %s, fd %d, type %s, state %d) tried to write %d bytes but timed out. (Marked at %s:%d)", safe_str(conn->address), conn->s, conn_type_to_string(conn->type), conn->state, (int)buf_datalen(conn->outbuf), conn->marked_for_close_file, |