mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-04-05 22:47:00 +00:00
adjust log levels
This commit is contained in:
parent
86eef28702
commit
c5fd0cc46c
4 changed files with 9 additions and 9 deletions
|
|
@ -30,13 +30,13 @@ std::list<std::shared_ptr<Task>> TaskManager::getTasks() {
|
|||
bool TaskManager::setup(std::shared_ptr<System> system) {
|
||||
logPrintlnV("will setup all tasks...");
|
||||
for (std::shared_ptr<Task> &elem : _alwaysRunTasks) {
|
||||
logPrintW("call setup from ");
|
||||
logPrintlnW(elem->getName());
|
||||
logPrintD("call setup from ");
|
||||
logPrintlnD(elem->getName());
|
||||
elem->setup(system);
|
||||
}
|
||||
for (std::shared_ptr<Task> &elem : _tasks) {
|
||||
logPrintW("call setup from ");
|
||||
logPrintlnW(elem->getName());
|
||||
logPrintD("call setup from ");
|
||||
logPrintlnD(elem->getName());
|
||||
elem->setup(system);
|
||||
}
|
||||
_nextTask = _tasks.begin();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue