Skip to content

Commit

Permalink
Fixed some more doxygen problems
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
crapp committed May 21, 2016
1 parent 70398c7 commit 99c1e0d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion doc/ealogger_doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,8 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = */examples/* \
*/src/test/* \
*/build/* \
*/todo/*
*/todo/* \
*/package/*

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
Expand Down
8 changes: 4 additions & 4 deletions include/ealogger/ealogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ namespace ealogger
write_log(msg, ealogger::constants::LOG_LEVEL::WARNING, __FILE__, __LINE__, \
__func__)
/**
* @def error(msg)
* @def eal_error(msg)
* @brief Write an error message
*/
#define eal_error(msg) \
write_log(msg, ealogger::constants::LOG_LEVEL::ERROR, __FILE__, __LINE__, \
__func__)
/**
* @def fatal(msg)
* @def eal_fatal(msg)
* @brief Write a fatal message
*/
#define eal_fatal(msg) \
Expand Down Expand Up @@ -134,8 +134,8 @@ namespace ealogger
* options you have to use the dedicated init method to reinitialize the sink.
*
* To make it easy to write messages with a specific severity there are some macro
* functions for each log level and one for stacktrace (#debug(msg) #info(msg)
* #warn(msg) #error(msg) #fatal(msg) #stack())
* functions for each log level and one for stacktrace (#eal_debug(msg) #eal_info(msg)
* #eal_warn(msg) #eal_error(msg) #eal_fatal(msg) #eal_stack())
* Logger::write_log allows you to write log messages without using these macros.
*
* ealogger and its sinks are threadsafe. Meaning if you use the same instance all
Expand Down

0 comments on commit 99c1e0d

Please sign in to comment.