diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-24 20:02:47 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-24 20:02:47 +0000 |
commit | b4243d7dfae53923a28b5dd392685083867e899f (patch) | |
tree | e3d18aae07f2c0242a49088aa8cb9fe933620744 | |
parent | 501659e67cb246945f936db10cbb6ef7ff6fea90 (diff) | |
download | tor-b4243d7dfae53923a28b5dd392685083867e899f.tar.gz tor-b4243d7dfae53923a28b5dd392685083867e899f.zip |
r11929@catbus: nickm | 2007-02-24 15:02:43 -0500
Split possibly long log line.
svn:r9643
-rw-r--r-- | src/or/router.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/router.c b/src/or/router.c index 556bb431f1..17c7581853 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1316,8 +1316,8 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, ri_tmp = router_parse_entry_from_string(cp, NULL, 1); if (!ri_tmp) { log_err(LD_BUG, - "We just generated a router descriptor we can't parse: <<%s>>", - s); + "We just generated a router descriptor we can't parse."); + log_err(LD_BUG, "Descriptor was: <<%s>>", s); return -1; } tor_free(s_dup); |