knowrob  2.1.0
A Knowledge Base System for Cognition-enabled Robots
logging.h
Go to the documentation of this file.
1 /*
2  * This file is part of KnowRob, please consult
3  * https://github.com/knowrob/knowrob for license details.
4  */
5 
6 #ifndef KNOWROB_PROLOG_LOGGING_H_
7 #define KNOWROB_PROLOG_LOGGING_H_
8 
9 #include <SWI-Prolog.h>
10 
11 namespace knowrob::prolog {
17  foreign_t log_message2(term_t level_term, term_t msg_term);
18 
26  foreign_t log_message4(term_t level_term, term_t msg_term, term_t file_term, term_t line_term);
27 }
28 
29 #endif // KNOWROB_PROLOG_LOGGING_H_
foreign_t log_message4(term_t level_term, term_t msg_term, term_t file_term, term_t line_term)
Definition: logging.cpp:61
foreign_t log_message2(term_t level_term, term_t msg_term)
Definition: logging.cpp:57