Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
f46a8dbc
by Tony Chemit at 2024-05-22T10:10:55+02:00
1 changed file:
Changes:
| ... | ... | @@ -50,15 +50,15 @@ public class DecoratorProviderInitializerHelper { |
| 50 | 50 | DecoratorProvider provider,
|
| 51 | 51 | Supplier<List<DecoratorDefinition<?, ?>>> listSupplier,
|
| 52 | 52 | Supplier<Stream<? extends DataGroupByDefinition<?, ?>>> groupByDefinitionsSupplier) {
|
| 53 | - log.info(String.format("Initializing... %s", initializer));
|
|
| 53 | + log.info("Initializing... {}", initializer);
|
|
| 54 | 54 | |
| 55 | 55 | List<DecoratorDefinition<?, ?>> list = listSupplier.get();
|
| 56 | 56 | |
| 57 | 57 | int count = DecoratorProviderInitializerHelper.registerGroupByDecorators(provider, list, groupByDefinitionsSupplier.get());
|
| 58 | - log.info(String.format("Initialization done %s, register %d DataGroupByDecoratorDefinition(s).", initializer, count));
|
|
| 58 | + log.info("Initialization done {}, register {} DataGroupByDecoratorDefinition(s).", initializer, count);
|
|
| 59 | 59 | |
| 60 | 60 | int index = DecoratorProviderInitializerHelper.registerToolkitLabels(provider, initializer.codeProperties(), list);
|
| 61 | - log.info(String.format("Initialization done %s, register %d ToolkitIdLabelDecoratorDefinition(s).", initializer, index));
|
|
| 61 | + log.info("Initialization done {}, register {} ToolkitIdLabelDecoratorDefinition(s).", initializer, index);
|
|
| 62 | 62 | }
|
| 63 | 63 | |
| 64 | 64 | public static int registerGroupByDecorators(DecoratorProvider provider, List<DecoratorDefinition<?, ?>> list, Stream<? extends DataGroupByDefinition<?, ?>> defs) {
|