diff options
Diffstat (limited to 'raul/AtomLiblo.hpp')
-rw-r--r-- | raul/AtomLiblo.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/raul/AtomLiblo.hpp b/raul/AtomLiblo.hpp index 7494ae4..fe6888a 100644 --- a/raul/AtomLiblo.hpp +++ b/raul/AtomLiblo.hpp @@ -20,6 +20,7 @@ #include <iostream> #include <lo/lo.h> +#include "raul/log.hpp" #include "raul/Atom.hpp" namespace Raul { @@ -85,7 +86,7 @@ lo_arg_to_atom(char type, lo_arg* arg) case 'F': return Atom((bool)false); default: - std::cerr << "WARNING: Unable to convert OSC type '" + warn << "Unable to convert OSC type '" << type << "' to Atom" << std::endl; return Atom(); } |