Skip to content
Snippets Groups Projects
Commit 6f5b41d6 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Fix for Tango 9.3.x compatibility: Add TANGO_LOG defines

parent 82edfd22
No related branches found
No related tags found
2 merge requests!4Resolve "Update for cppTango 9.5.x",!3Resolve "Add macOS compatibility"
Pipeline #2016 failed with stages
in 1 minute and 31 seconds
......@@ -23,6 +23,16 @@
#define MAX_ATTR_SIZE 3000
#define MAX_SPECTRUM_SIZE 100
#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
/*----- PROTECTED REGION END -----*/
......
......@@ -25,6 +25,16 @@
#include <tango/tango.h>
#include <TestDevice.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
/*----- PROTECTED REGION END -----*/
namespace TestDevice_ns
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment