aboutsummaryrefslogtreecommitdiff
path: root/NodeOutput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NodeOutput.cpp')
-rw-r--r--NodeOutput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/NodeOutput.cpp b/NodeOutput.cpp
index 00ca006..5138805 100644
--- a/NodeOutput.cpp
+++ b/NodeOutput.cpp
@@ -11,11 +11,11 @@ void NodeOutput::sim() {
if (this->inputs.size() == 0)
throw CircuitException("No inputs on probe");
- std::cout << this->inputs[0]->getLevel() << "foo" << std::endl;
+ std::cout << "Probe signal level: " << this->inputs[0]->getLevel() << std::endl;
}
NodeOutput::NodeOutput(const NodeOutput * prototype) : Node() { }
NodeOutput * NodeOutput::clone() const {
return new NodeOutput(this);
-} \ No newline at end of file
+}