package com.nokia.tsl_data.service; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; @Slf4j @Service public class DemoService { public void test() { log.info("=======test start======="); try { Thread.sleep(1000 * 10L); } catch (InterruptedException e) { e.printStackTrace(); } log.info("=======test end======="); } }