Skip to content

Commit

Permalink
Comment out debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
shorowit authored and jmarrec committed May 15, 2024
1 parent 20d91f5 commit c7d1a59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ruby/engine/RubyEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ RubyEngine::~RubyEngine() {
// ruby_cleanup calls ruby_finalize
int ex = ruby_cleanup(0);
if (ex != 0) {
fmt::print("RubyEngine return code was {}\n", ex);
// fmt::print("RubyEngine return code was {}\n", ex);
exit(ex);
}
//ruby_finalize();
Expand Down
2 changes: 1 addition & 1 deletion src/cli/RunCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace cli {
app->add_flag(
"-m,--measures_only",
[opt](std::int64_t val) {
fmt::print("val={}\n", val);
// fmt::print("val={}\n", val);
opt->no_simulation = (val == 1);
},
"Only run the OpenStudio and EnergyPlus measures");
Expand Down

0 comments on commit c7d1a59

Please sign in to comment.