File: Logging.h

package info (click to toggle)
tango 10.0.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 89,484 kB
  • sloc: cpp: 201,245; sh: 1,645; python: 953; java: 800; perl: 467; javascript: 447; xml: 325; makefile: 269; sql: 72; ruby: 24
file content (14 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (6)
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