From 435dc5318a81c05563853c432da93d8e8eb8fc61 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 22 Jan 2015 12:03:24 +1100 Subject: [PATCH] Decrease verbosity of invalid char being passed to validate_address --- src/bitcoin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitcoin.c b/src/bitcoin.c index 5812b994..88e37817 100644 --- a/src/bitcoin.c +++ b/src/bitcoin.c @@ -1,5 +1,5 @@ /* - * Copyright 2014 Con Kolivas + * Copyright 2014-2015 Con Kolivas * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free @@ -46,7 +46,7 @@ bool validate_address(connsock_t *cs, const char *address) } } if (!found) { - LOGWARNING("Invalid char %.1s passed to validate_address", &c); + LOGNOTICE("Invalid char %.1s passed to validate_address", &c); return ret; } }