preCICE v3.1.2
Loading...
Searching...
No Matches
Tracer.hpp
Go to the documentation of this file.
1#pragma once
2#include "Logger.hpp"
3
4namespace precice {
5namespace logging {
6class Logger;
7struct LogLocation;
8
9class Tracer {
10public:
11 Tracer(Logger &log, LogLocation loc);
12 ~Tracer();
13
14private:
16
18};
19
20} // namespace logging
21} // namespace precice
This class provides a lightweight logger.
Definition Logger.hpp:16
Tracer(Logger &log, LogLocation loc)
Definition Tracer.cpp:8
Main namespace of the precice library.
Struct used to capture the original location of a log request.
Definition Logger.hpp:9