ilasynth  1.0
ILASynth: Template-based ILA Synthesis Engine
logging.hpp
Go to the documentation of this file.
1 #ifndef _LOGGING_HPP_DEFINED_
2 #define _LOGGING_HPP_DEFINED_
3 
4 #include <iostream>
5 
6 namespace ilasynth {
7 std::ostream& info(const char* s);
8 std::ostream& log1(const char* s);
9 std::ostream& log2(const char* s);
10 
11 void initLogging();
12 
13 void setLogLevel(int l, const std::string& name);
14 void enableLog(const std::string& name);
15 void disableLog(const std::string& name);
16 void clearLogs();
17 } // namespace ilasynth
18 
19 #endif
void clearLogs()
void disableLog(const std::string &name)
std::ostream & info(const char *s)
std::ostream & log2(const char *s)
void enableLog(const std::string &name)
std::ostream & log1(const char *s)
Definition: abstraction.hpp:21
void initLogging()
void setLogLevel(int l, const std::string &name)