diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-27 17:57:06 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-27 17:57:06 +0200 |
commit | 81bff2df037a218cb973559a2bfbfbd259b1cbad (patch) | |
tree | baeeeb599991e6de736e91f3b9e80f8603fd7bb0 /src/types.h | |
parent | e91f17de87175d822ae7e3d3238e7a0021a645ad (diff) | |
download | fastd-81bff2df037a218cb973559a2bfbfbd259b1cbad.tar fastd-81bff2df037a218cb973559a2bfbfbd259b1cbad.zip |
Introduce new log level debug2 for potentially very frequent messages
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h index bb7663e..2dcfa58 100644 --- a/src/types.h +++ b/src/types.h @@ -65,6 +65,17 @@ typedef enum fastd_peer_state { STATE_ESTABLISHED, } fastd_peer_state_t; +typedef enum fastd_loglevel { + LL_UNSPEC = 0, + LL_FATAL, + LL_ERROR, + LL_WARN, + LL_INFO, + LL_VERBOSE, + LL_DEBUG, + LL_DEBUG2, +} fastd_loglevel_t; + typedef struct fastd_buffer fastd_buffer_t; typedef union fastd_peer_address fastd_peer_address_t; |