We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b67a1f commit 2a0418eCopy full SHA for 2a0418e
tests/src/ondevice_tests/logging_test.cpp
@@ -1,5 +1,3 @@
1
-#include <spdlog/spdlog.h>
2
-
3
#include <catch2/catch_all.hpp>
4
#include <chrono>
5
#include <thread>
@@ -15,7 +13,7 @@ class LoggingTestFixture {
15
13
std::shared_ptr<dai::node::Script> script;
16
14
std::shared_ptr<dai::InputQueue> in;
17
std::shared_ptr<dai::MessageQueue> out;
18
- std::array<bool, spdlog::level::n_levels - 1> arrivedLogs;
+ std::array<bool, static_cast<int>(dai::LogLevel::OFF)> arrivedLogs;
19
std::shared_ptr<dai::Device> device;
20
21
LoggingTestFixture() {
0 commit comments