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 1fdbe17 commit 6102a8dCopy full SHA for 6102a8d
src/AudioTools/CoreAudio/AudioMetaData/MimeDetector.h
@@ -110,6 +110,7 @@ class MimeDetector : public MimeSource {
110
Check check_to_add{mime, check};
111
check_to_add.is_active = isActvie;
112
checks.push_back(check_to_add);
113
+ LOGI("MimeDetector for %s: %s", mime, isActvie ? "active" : "inactive");
114
}
115
116
// /// Define the callback that will notify about mime changes
@@ -291,6 +292,7 @@ class MimeDetector : public MimeSource {
291
292
for (auto& check : checks) {
293
if (StrView(check.mime).startsWith(mimePrefix)) {
294
check.is_active = active;
295
+ LOGI("MimeDetector for %s: %s", check.mime, check.is_active ? "active" : "inactive");
296
result++;
297
298
0 commit comments