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

Commit

Permalink
fix: remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
killcerr committed Feb 11, 2024
1 parent a738c39 commit 8c047ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pocketpy_engine_imp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ using engines_t = ::std::unordered_map<std::string, pocketpy_engine>;
engines_t engines;
std::vector<char> readF(auto path) {
auto f = fopen(path, "r");
logger.info(path);
// logger.info(path);
if (!f) return {};
std::vector<char> source;
char c = getc(f);
Expand Down

0 comments on commit 8c047ca

Please sign in to comment.