mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-04-05 22:47:00 +00:00
fixing String in fstring
This commit is contained in:
parent
6839db20ca
commit
4bd1c46335
12 changed files with 33 additions and 33 deletions
|
|
@ -24,11 +24,11 @@ std::list<Task *> TaskManager::getTasks() {
|
|||
bool TaskManager::setup(System &system) {
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, MODULE_NAME, "will setup all tasks...");
|
||||
for (Task *elem : _alwaysRunTasks) {
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, MODULE_NAME, "call setup for %s", elem->getName());
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, MODULE_NAME, "call setup for %s", elem->getName().c_str());
|
||||
elem->setup(system);
|
||||
}
|
||||
for (Task *elem : _tasks) {
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, MODULE_NAME, "call setup for %s", elem->getName());
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, MODULE_NAME, "call setup for %s", elem->getName().c_str());
|
||||
elem->setup(system);
|
||||
}
|
||||
_nextTask = _tasks.begin();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue