@@ -1065,7 +1065,7 @@ private <T> Optional<NamedComponent<T>> buildAndStore(Query<T> query, MachineEng
1065
1065
ImmutableList .<SatisfiedQuery <?>>of (SatisfiedQuery .of (query , name )), engine );
1066
1066
Deque <BuildingBox <?>> dependencies = buildBuildingBoxesClosure (buildingBox );
1067
1067
1068
- logger .info ("{} - dependencies closure for {} is: {}" , id , name , dependencies );
1068
+ logger .debug ("{} - dependencies closure for {} is: {}" , id , name , dependencies );
1069
1069
satisfyBoms (dependencies );
1070
1070
1071
1071
return buildAndStore (buildingBox );
@@ -1211,7 +1211,7 @@ private <T> Optional<NamedComponent<T>> buildAndStore(BuildingBox<T> buildingBox
1211
1211
}
1212
1212
1213
1213
private <T > Optional <NamedComponent <T >> buildAndStore (Name <T > name , MachineEngine <T > engine , SatisfiedBOM satisfiedBOM ) {
1214
- logger .info ("{} - building {} with {} / {}" , id , name , engine , satisfiedBOM );
1214
+ logger .debug ("{} - building {} with {} / {}" , id , name , engine , satisfiedBOM );
1215
1215
Timer timer = metrics .timer ("<BUILD> " + name .getSimpleName ());
1216
1216
Monitor monitor = timer .time ();
1217
1217
ComponentBox <T > box ;
@@ -1238,7 +1238,7 @@ private <T> Optional<NamedComponent<T>> buildAndStore(Name<T> name, MachineEngin
1238
1238
monitor = metrics .timer ("<CUSTOMIZE> " + name .getSimpleName ()
1239
1239
+ " <WITH> " + customizer .getClass ().getSimpleName ()).time ();
1240
1240
try {
1241
- logger .info ("{} - customizing {} with {}" , id , name , customizer );
1241
+ logger .debug ("{} - customizing {} with {}" , id , name , customizer );
1242
1242
box = box .customize (customizer );
1243
1243
} finally {
1244
1244
monitor .stop ();
0 commit comments