Showing
3 changed files
with
3 additions
and
3 deletions
@@ -21,7 +21,7 @@ import java.util.function.Consumer; | @@ -21,7 +21,7 @@ import java.util.function.Consumer; | ||
21 | import java.util.function.Function; | 21 | import java.util.function.Function; |
22 | import java.util.function.Supplier; | 22 | import java.util.function.Supplier; |
23 | 23 | ||
24 | -@Slf4j(topic = "notice") | 24 | +@Slf4j(topic = "NoticeFacade") |
25 | public class BaseNoticeFacade { | 25 | public class BaseNoticeFacade { |
26 | 26 | ||
27 | private ExecutorService executorService = new ThreadPoolExecutor(5, 10, | 27 | private ExecutorService executorService = new ThreadPoolExecutor(5, 10, |
@@ -14,7 +14,7 @@ import java.util.function.Function; | @@ -14,7 +14,7 @@ import java.util.function.Function; | ||
14 | import java.util.function.Supplier; | 14 | import java.util.function.Supplier; |
15 | 15 | ||
16 | @Service | 16 | @Service |
17 | -@Slf4j | 17 | +@Slf4j(topic = "NoticeFacade") |
18 | public class BuyerNoticeFacade extends BaseNoticeFacade { | 18 | public class BuyerNoticeFacade extends BaseNoticeFacade { |
19 | 19 | ||
20 | @Autowired | 20 | @Autowired |
@@ -38,7 +38,7 @@ import java.util.concurrent.TimeUnit; | @@ -38,7 +38,7 @@ import java.util.concurrent.TimeUnit; | ||
38 | * Created by chenchao on 2018/10/8. | 38 | * Created by chenchao on 2018/10/8. |
39 | */ | 39 | */ |
40 | @Service | 40 | @Service |
41 | -@Slf4j(topic = "notice") | 41 | +@Slf4j(topic = "NoticeFacade") |
42 | public class InBoxFacade extends BaseNoticeFacade{ | 42 | public class InBoxFacade extends BaseNoticeFacade{ |
43 | 43 | ||
44 | private ExecutorService executorService = new ThreadPoolExecutor(5, 10, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<>(1000), new InBoxThreadFactory()); | 44 | private ExecutorService executorService = new ThreadPoolExecutor(5, 10, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<>(1000), new InBoxThreadFactory()); |
-
Please register or login to post a comment