From b632d2ce1c817518edfec5bda55cbb7e14a73e7b Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:38:21 +0800 Subject: [PATCH] print timestamp when image generated --- otherarch/sdcpp/sdtype_adapter.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index e88809420..c739254f5 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -1292,6 +1292,11 @@ sd_generation_outputs sdtype_generate(const sd_generation_inputs inputs) output.animated = (wasanim?1:0); output.status = 1; total_img_gens += 1; + if(!sd_is_quiet) + { + std::string ts = get_timestamp_str(); + printf("[%s] Generating Media Complete\n",ts.c_str()); + } return output; }