Logo white

open_source / mqtt-cpp

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mqtt-cpp
  • include
  • log.h
  • Setting up the logger
    f23cf8e6
    Peter M. Groen authored
    2022-04-05 18:02:42 +0200  
    Browse Code ยป
log.h 334 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#pragma once

#include <syslog.h>
#include <unistd.h>

namespace osdev {
namespace components {
namespace mqtt {

static void LogTrace();

static void LogDebug();

static void LogInfo();

static void LogWarning();

static void LogError();

}   /* End namespace mqtt */
}   /* End namespace components */
}   /* End namespace osdev */