#
Junjie
2026-01-15 470718b6f7de2688807a59b4e32f437624c51499
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();
                    }
                }
            }
        });