From 9046438cc882bc9d175e8880967aa74cd19ea58b Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Wed, 25 Feb 2026 16:51:35 -0500 Subject: [PATCH] changed transaction log name was colliding with another resident of the temp directory --- octopi/library/cromp/cromp_transaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octopi/library/cromp/cromp_transaction.cpp b/octopi/library/cromp/cromp_transaction.cpp index 192476f5..844db0c3 100644 --- a/octopi/library/cromp/cromp_transaction.cpp +++ b/octopi/library/cromp/cromp_transaction.cpp @@ -48,7 +48,7 @@ const int MAXIMUM_TRANSACTION = 100 * MEGABYTE; // since the transaction stuff is so low-level, we risk a feedback loop if // we log stuff when the program wide logger is itself a communication // object. - #define LOG(s) CLASS_EMERGENCY_LOG(file_logger(environment::TMP() + "/cromp_transaction.log"), s) + #define LOG(s) CLASS_EMERGENCY_LOG(file_logger(environment::TMP() + "/transactions-cromp.log"), s) #else #define LOG(s) #endif -- 2.43.0