Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Aug 30, 2023
1 parent ec5cc65 commit a10e4a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Formats/ProbeInterfaceJson.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ProbeInterfaceJson
static bool writeProbeSettingsToJson(File& file, ProbeSettings settings)
{

std::cout << "Writing JSON file." << std::endl;
//std::cout << "Writing JSON file." << std::endl;

DynamicObject output;

Expand Down Expand Up @@ -87,7 +87,7 @@ class ProbeInterfaceJson
static bool readProbeSettingsFromJson(File& file, ProbeSettings& settings)
{

std::cout << "Reading JSON file." << std::endl;
// std::cout << "Reading JSON file." << std::endl;

var result;

Expand Down Expand Up @@ -148,7 +148,7 @@ class ProbeInterfaceJson
int xpos = int(contact_position->getReference(0));
int ypos = int(contact_position->getReference(1));

std::cout << " Position: " << xpos << ", " << ypos << std::endl;
//std::cout << " Position: " << xpos << ", " << ypos << std::endl;
}
}
}
Expand Down

0 comments on commit a10e4a2

Please sign in to comment.