summaryrefslogtreecommitdiff
path: root/src/or/command.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-10-17 00:35:53 +0000
committerRoger Dingledine <arma@torproject.org>2005-10-17 00:35:53 +0000
commit03dcef4c78b029f7345c69f7f5d59338198bf2e5 (patch)
tree5f1f9a35df35f236d9c3cfe50b159c9360a88c75 /src/or/command.c
parentaca6fb5f5f3875a9e51cef8c60a45750944e84eb (diff)
downloadtor-03dcef4c78b029f7345c69f7f5d59338198bf2e5.tar.gz
tor-03dcef4c78b029f7345c69f7f5d59338198bf2e5.zip
start the process of reducing clutter in server logs
svn:r5253
Diffstat (limited to 'src/or/command.c')
-rw-r--r--src/or/command.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/or/command.c b/src/or/command.c
index 7e5072712a..8e4521469b 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -144,7 +144,8 @@ command_process_cell(cell_t *cell, connection_t *conn)
#endif
break;
default:
- log_fn(LOG_WARN,"Cell of unknown type (%d) received. Dropping.", cell->command);
+ log_fn(LOG_PROTOCOL_WARN,
+ "Cell of unknown type (%d) received. Dropping.", cell->command);
break;
}
}
@@ -184,7 +185,9 @@ command_process_create_cell(cell_t *cell, connection_t *conn)
circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
if (circ) {
- log_fn(LOG_WARN,"received CREATE cell (circID %d) for known circ. Dropping.", cell->circ_id);
+ log_fn(LOG_PROTOCOL_WARN,
+ "received CREATE cell (circID %d) for known circ. Dropping.",
+ cell->circ_id);
return;
}
@@ -238,7 +241,7 @@ command_process_created_cell(cell_t *cell, connection_t *conn)
}
if (circ->n_circ_id != cell->circ_id) {
- log_fn(LOG_WARN,"got created cell from OPward? Closing.");
+ log_fn(LOG_PROTOCOL_WARN,"got created cell from OPward? Closing.");
circuit_mark_for_close(circ);
return;
}
@@ -281,20 +284,20 @@ command_process_relay_cell(cell_t *cell, connection_t *conn)
}
if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
- log_fn(LOG_WARN,"circuit in create_wait. Closing.");
+ log_fn(LOG_PROTOCOL_WARN,"circuit in create_wait. Closing.");
circuit_mark_for_close(circ);
return;
}
if (cell->circ_id == circ->p_circ_id) { /* it's an outgoing cell */
if (circuit_receive_relay_cell(cell, circ, CELL_DIRECTION_OUT) < 0) {
- log_fn(LOG_WARN,"circuit_receive_relay_cell (forward) failed. Closing.");
+ log_fn(LOG_PROTOCOL_WARN,"circuit_receive_relay_cell (forward) failed. Closing.");
circuit_mark_for_close(circ);
return;
}
} else { /* it's an ingoing cell */
if (circuit_receive_relay_cell(cell, circ, CELL_DIRECTION_IN) < 0) {
- log_fn(LOG_WARN,"circuit_receive_relay_cell (backward) failed. Closing.");
+ log_fn(LOG_PROTOCOL_WARN,"circuit_receive_relay_cell (backward) failed. Closing.");
circuit_mark_for_close(circ);
return;
}