From 38b7db6e418fe7ee28a936197edc774751d8770d Mon Sep 17 00:00:00 2001 From: gscalamera <graziano.scalamera@elettra.eu> Date: Thu, 5 Sep 2024 11:21:17 +0200 Subject: [PATCH] Fix TestDevice for cppTango 9.5.x update --- test/testdevice/src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/testdevice/src/main.cpp b/test/testdevice/src/main.cpp index 16ab44d..b9c6d57 100644 --- a/test/testdevice/src/main.cpp +++ b/test/testdevice/src/main.cpp @@ -20,6 +20,15 @@ #include <tango/tango.h> +#ifndef TANGO_LOG +#define TANGO_LOG cout +#endif +#ifndef TANGO_LOG_INFO +#define TANGO_LOG_INFO cout2 +#endif +#ifndef TANGO_LOG_DEBUG +#define TANGO_LOG_DEBUG cout4 +#endif int main(int argc,char *argv[]) { -- GitLab