fixed logging pattern

This commit is contained in:
Chris Punches
2025-03-07 23:53:31 -05:00
parent ee1df1fb0c
commit 34bab86b69
6 changed files with 138 additions and 122 deletions

View File

@@ -35,7 +35,8 @@
#include <iostream>
#include "ConfigManager.hpp"
#include "LoggingLevels.hpp"
#include "Logger.hpp"
/*
* Provides reserved symbol names we look for in modules.
@@ -62,9 +63,9 @@ extern "C" {
// Module description information
const char* dpm_get_description(void);
// Callback function exposed by DPM core for modules to use
int dpm_core_callback(const char* action, const char* data);
// Direct configuration access function
const char* dpm_get_config(const char* section, const char* key);
// Direct logging function
void dpm_log(int level, const char* message);
}