From ba6939733fd6a30a4ff881019fa1ae2cc1fd2e41 Mon Sep 17 00:00:00 2001 From: Ludy Date: Sat, 19 Jul 2025 18:58:51 +0200 Subject: [PATCH] Update app/common/src/main/java/stirling/software/common/util/GeneralUtils.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../main/java/stirling/software/common/util/GeneralUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/src/main/java/stirling/software/common/util/GeneralUtils.java b/app/common/src/main/java/stirling/software/common/util/GeneralUtils.java index 20b521d28..6745adef1 100644 --- a/app/common/src/main/java/stirling/software/common/util/GeneralUtils.java +++ b/app/common/src/main/java/stirling/software/common/util/GeneralUtils.java @@ -472,7 +472,7 @@ public class GeneralUtils { try (InputStream in = resource.getInputStream()) { Files.copy(in, scriptFile, StandardCopyOption.REPLACE_EXISTING); } catch (IOException e) { - log.error("Failed to load image signature file", e); + log.error("Failed to extract Python script", e); throw e; } }