From 5ef59b9ae1cbbaede72a165dc2e04d532b02e75d Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 16 Jul 2013 17:10:26 +0200 Subject: [PATCH] Unimplemented bitcoinSerializeToStream -> log error, not debug --- core/src/main/java/com/google/bitcoin/core/Message.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/bitcoin/core/Message.java b/core/src/main/java/com/google/bitcoin/core/Message.java index 025844a7..1cc2e3fa 100644 --- a/core/src/main/java/com/google/bitcoin/core/Message.java +++ b/core/src/main/java/com/google/bitcoin/core/Message.java @@ -372,7 +372,7 @@ public abstract class Message implements Serializable { * Serializes this message to the provided stream. If you just want the raw bytes use bitcoinSerialize(). */ void bitcoinSerializeToStream(OutputStream stream) throws IOException { - log.debug("Warning: {} class has not implemented bitcoinSerializeToStream method. Generating message with no payload", getClass()); + log.error("Error: {} class has not implemented bitcoinSerializeToStream method. Generating message with no payload", getClass()); } /**