Skip to content

Commit

Permalink
Merge pull request #160 from vilhalmer/quieter-usage-count
Browse files Browse the repository at this point in the history
Move usage count to print_verbose
  • Loading branch information
beniwtv authored Nov 20, 2024
2 parents 3b21efa + 8b30414 commit c959630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/open_vr/openvr_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ openvr_data *openvr_data::retain_singleton() {
Array arr;
arr.push_back(Variant(singleton->use_count));

UtilityFunctions::print(msg.format(arr));
UtilityFunctions::print_verbose(msg.format(arr));
}
return singleton;
}
Expand All @@ -132,7 +132,7 @@ void openvr_data::release() {
Array arr;
arr.push_back(Variant(singleton->use_count));

UtilityFunctions::print(msg.format(arr));
UtilityFunctions::print_verbose(msg.format(arr));
} else {
delete this;
}
Expand Down

0 comments on commit c959630

Please sign in to comment.