aboutsummaryrefslogtreecommitdiff
path: root/Museum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Museum.cpp')
-rw-r--r--Museum.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Museum.cpp b/Museum.cpp
index 361afaf..c34bb5b 100644
--- a/Museum.cpp
+++ b/Museum.cpp
@@ -26,6 +26,7 @@ void Museum::work() {
auto next = chrono::steady_clock::now() + this->tick_interval;
this->update();
+ printf("%lu artists\n", this->people.get_artists().size());
this_thread::sleep_until(next);
}
}