#
Junjie
2026-01-14 4ba71d310ea632e16e89b659e423ffeeb228cd25
src/main/java/com/zy/core/MainProcess.java
@@ -63,18 +63,8 @@
                    // 4. 间隔
                    Thread.sleep(200);
                } catch (InterruptedException ie) {
                    log.info("MainProcess thread interrupted, stopping...");
                    Thread.currentThread().interrupt();
                    break;
                } catch (Exception e) {
                    log.error("Error in MainProcess execution loop", e);
                    try {
                        // 避免异常导致的狂刷日志
                        Thread.sleep(1000);
                    } catch (InterruptedException ex) {
                        Thread.currentThread().interrupt();
                    }
                }
            }
        });