File: Logging.h

package info (click to toggle)
tango 10.1.0%2Bdfsg1-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 88,780 kB
  • sloc: cpp: 213,413; sh: 1,641; python: 1,264; javascript: 472; perl: 467; xml: 407; makefile: 294; java: 260; sql: 72
file content (14 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOGGING_H
#define LOGGING_H

#ifdef TANGO_LOG
  // cppTango after c934adea (Merge branch 'remove-cout-definition' into 'main', 2022-05-23)
  // nothing to do
#else
  // cppTango 9.3-backports and older
  #define TANGO_LOG       cout
  #define TANGO_LOG_INFO  cout2
  #define TANGO_LOG_DEBUG cout3
#endif // TANGO_LOG

#endif // LOGGING_H