From e8b62100345b9c09610e8bd1fd3df850c5378bcf Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 12 Mar 2025 18:14:10 -0400 Subject: [PATCH] better status --- CMakeLists.txt | 2 +- src/blt/logging/status.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 23ad674..155d11e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 5.2.18) +set(BLT_VERSION 5.2.19) set(BLT_TARGET BLT) diff --git a/src/blt/logging/status.cpp b/src/blt/logging/status.cpp index 69be8f2..90696b4 100644 --- a/src/blt/logging/status.cpp +++ b/src/blt/logging/status.cpp @@ -158,7 +158,7 @@ namespace blt::logging void status_progress_bar_t::set_progress(const double progress) { if (std::isnan(progress) || progress < 0 || progress > 1 || std::isinf(progress)) - throw std::invalid_argument("progress must be between 0 and 1"); + throw std::invalid_argument("Progress must be between 0 and 1 (got: " + std::to_string(progress) + ")"); m_progress = progress; // m_status->redraw(); }