Skip to content

Commit

Permalink
sys: Fixed one remaining log::info occurrence
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Aug 2, 2022
1 parent fdcce1c commit 0a97b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libimhex/source/api/content_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ namespace hex {
}

void add(const std::string &unlocalizedName, size_t requiredSize, size_t maxSize, impl::GeneratorFunction displayGeneratorFunction, std::optional<impl::EditingFunction> editingFunction) {
log::info("Registered new data inspector format: {}", unlocalizedName);
log::debug("Registered new data inspector format: {}", unlocalizedName);

getEntries().push_back({ unlocalizedName, requiredSize, maxSize, std::move(displayGeneratorFunction), std::move(editingFunction) });
}
Expand Down

0 comments on commit 0a97b59

Please sign in to comment.