Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
shevernitskiy committed Jan 20, 2023
1 parent 8e2796c commit d49781f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/hook/dictionary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ std::optional<std::string> Dictionary::Get(const char* key, size_t size)
buf = std::make_unique<char[]>(size + 1);
strncpy(buf.get(), key, size);
buf[size] = '\0';
logger::debug("string {}", buf.get());
}

if (this->dict.find(buf ? buf.get() : key) == this->dict.end()) {
Expand Down

0 comments on commit d49781f

Please sign in to comment.