diff --git a/include/vkcv/Logger.hpp b/include/vkcv/Logger.hpp index af666f5d0ea65bac024340f7ee72d85d0ffe3cce..5c78a0426ca2d456c02eb9aa20dc1791169cc791 100644 --- a/include/vkcv/Logger.hpp +++ b/include/vkcv/Logger.hpp @@ -63,6 +63,12 @@ namespace vkcv { } } + /** + * @brief Returns the amount of milliseconds since the last + * call of this function for logging functionality durations. + * + * @return Duration in milliseconds from last logging + */ inline unsigned long getLogTime() { const auto time_point = std::chrono::high_resolution_clock::now(); static auto last_time_point = time_point;