From: Tobias Markus Date: Tue, 17 Mar 2015 16:55:15 +0000 (+0100) Subject: Candle property warning to debug X-Git-Url: https://git.octo.it/?p=supertux.git;a=commitdiff_plain;h=aa9dd770ebf02361a846acfaef136864b82b92ce Candle property warning to debug --- diff --git a/src/object/candle.cpp b/src/object/candle.cpp index 0f9312637..0ddfa5596 100644 --- a/src/object/candle.cpp +++ b/src/object/candle.cpp @@ -34,21 +34,21 @@ Candle::Candle(const Reader& lisp) if(!lisp.get("name", name)) { - log_warning << "Couldn't get \"name\" property for candle." << std::endl; + log_debug << "Couldn't get \"name\" property for candle." << std::endl; } if(!lisp.get("burning", burning)) { - log_warning << "Couldn't get \"burning\" property for candle." << std::endl; + log_debug << "Couldn't get \"burning\" property for candle." << std::endl; } if(!lisp.get("flicker", flicker)) { - log_warning << "Couldn't get \"flicker\" property for candle." << std::endl; + log_debug << "Couldn't get \"flicker\" property for candle." << std::endl; } //get color from lisp std::vector vColor; if(lisp.get("color", vColor)) { - log_warning << "Couldn't get \"color\" property for candle." << std::endl; + log_debug << "Couldn't get \"color\" property for candle." << std::endl; } //change the light color if defined