summaryrefslogtreecommitdiff
path: root/include/nslog/nslog.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2019-08-02 09:54:34 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-08-02 09:54:34 +0100
commita9e47c8ccb2eefbc707ee5b13dffef29cf8bdb5d (patch)
tree4fc30f934a3f27f6c3b0592ebbeaa7606e26f294 /include/nslog/nslog.h
parent9acac7f9f15def92c1d10cc1a6c1ea258a1b6ca1 (diff)
downloadlibnslog-a9e47c8ccb2eefbc707ee5b13dffef29cf8bdb5d.tar.gz
libnslog-a9e47c8ccb2eefbc707ee5b13dffef29cf8bdb5d.tar.bz2
nslog: Add nslog_short_level_name() for use in renderers
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'include/nslog/nslog.h')
-rw-r--r--include/nslog/nslog.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/nslog/nslog.h b/include/nslog/nslog.h
index 9113527..d63ed48 100644
--- a/include/nslog/nslog.h
+++ b/include/nslog/nslog.h
@@ -48,6 +48,17 @@ typedef enum {
*/
const char *nslog_level_name(nslog_level level);
+/**
+ * Convert a logging level to a short string.
+ *
+ * The returned string is owned by the nslog library (static) and should
+ * not be freed. It will be exactly four characters wide and suitable for
+ * logging to a file neatly.
+ *
+ * \param level The level for which you want the 'short' name.
+ */
+const char *nslog_short_level_name(nslog_level level);
+
#define NSLOG_LEVEL_DD NSLOG_LEVEL_DEEPDEBUG
#define NSLOG_LEVEL_DBG NSLOG_LEVEL_DEBUG
#define NSLOG_LEVEL_CHAT NSLOG_LEVEL_VERBOSE