-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathexampleLog.cxx
More file actions
42 lines (33 loc) · 1.46 KB
/
exampleLog.cxx
File metadata and controls
42 lines (33 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include <InfoLogger/InfoLogger.hxx>
// optionnaly, use the helper macros
#include <InfoLogger/InfoLoggerMacros.hxx>
using namespace AliceO2::InfoLogger;
int main()
{
// create handle to infologger system
InfoLogger theLog;
// or, alternatively, to start infologger library in debug mode on stdout
// (can also be done at runtime by setting environment O2_INFOLOGGER_MODE)
// outputMode can be one of stdout, debug, infoLoggerD, ...
// InfoLogger theLog("outputMode=debug");
// optionnaly, customize some of the "static" fields
// to be applied to all messages
InfoLoggerContext theLogContext;
theLogContext.setField(InfoLoggerContext::FieldName::Facility, "myTestFacility");
theLog.setContext(theLogContext);
// log a message
theLog.log("infoLogger message test");
// log a warning with code 1234 for developers
theLog.log(LogWarningDevel_(1234), "this is a test warning message");
return 0;
}