fix(ops): 修复日志打印问题
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled

This commit is contained in:
lzh
2026-02-04 00:07:45 +08:00
parent d34f3bd80d
commit 940a968560
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ public class TtsQueueProcessJob {
try {
int processedCount = ttsQueueConsumer.processAllQueues();
if (processedCount > 0) {
log.info("[TTS队列Job] 处理完成: 处理 {} 条消<EFBFBD><EFBFBD>", processedCount);
log.info("[TTS队列Job] 处理完成: 处理 {} 条消", processedCount);
}
return String.format("TTS队列处理完成: 处理 %d 条消息", processedCount);
} catch (Exception e) {

View File

@@ -167,7 +167,7 @@ public interface BadgeDeviceStatusService {
void updateOrderStatusAndBeacon(Long deviceId, Long orderId, String orderStatus, String beaconMac);
/**
* 清除当前工单包括工单ID、工单状态、信标MAC
* 清除当前工单包括工单ID、工单状态、区域ID、区域名称、信标MAC
*
* @param deviceId 设备ID
*/