Skip to content

Commit 350d37e

Browse files
committed
Whitespace in log text.
1 parent 122fba8 commit 350d37e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/protocols/protocol_block_out.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ bool protocol_block_out::handle_receive_get_headers(const code& ec,
131131
{
132132
LOG_WARNING(LOG_NODE)
133133
<< "Excessive get_headers locator size ("
134-
<< size << ") from [" << authority() << "] ";
134+
<< size << ") from [" << authority() << "]";
135135
stop(error::channel_stopped);
136136
return false;
137137
}
@@ -140,7 +140,7 @@ bool protocol_block_out::handle_receive_get_headers(const code& ec,
140140
{
141141
LOG_DEBUG(LOG_NODE)
142142
<< "Disallowed get_headers locator size ("
143-
<< size << ") from [" << authority() << "] ";
143+
<< size << ") from [" << authority() << "]";
144144
return true;
145145
}
146146

@@ -192,7 +192,7 @@ bool protocol_block_out::handle_receive_get_blocks(const code& ec,
192192
{
193193
LOG_WARNING(LOG_NODE)
194194
<< "Excessive get_blocks locator size ("
195-
<< size << ") from [" << authority() << "] ";
195+
<< size << ") from [" << authority() << "]";
196196
stop(error::channel_stopped);
197197
return false;
198198
}
@@ -201,7 +201,7 @@ bool protocol_block_out::handle_receive_get_blocks(const code& ec,
201201
{
202202
LOG_DEBUG(LOG_NODE)
203203
<< "Disallowed get_blocks locator size ("
204-
<< size << ") from [" << authority() << "] ";
204+
<< size << ") from [" << authority() << "]";
205205
return true;
206206
}
207207

@@ -252,7 +252,7 @@ bool protocol_block_out::handle_receive_get_data(const code& ec,
252252
{
253253
LOG_WARNING(LOG_NODE)
254254
<< "Invalid get_data size (" << message->inventories().size()
255-
<< ") from [" << authority() << "] ";
255+
<< ") from [" << authority() << "]";
256256
stop(error::channel_stopped);
257257
return false;
258258
}

src/protocols/protocol_transaction_out.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ bool protocol_transaction_out::handle_receive_get_data(const code& ec,
142142
{
143143
LOG_WARNING(LOG_NODE)
144144
<< "Invalid get_data size (" << message->inventories().size()
145-
<< ") from [" << authority() << "] ";
145+
<< ") from [" << authority() << "]";
146146
stop(error::channel_stopped);
147147
return false;
148148
}

0 commit comments

Comments
 (0)