@@ -52,7 +52,7 @@ else if (target.getFileName().toString().endsWith(".key.plain"))
52
52
else if (target .getFileName ().toString ().endsWith (".p12" ))
53
53
toRuntimeException (() -> writePkcs12 (cert .getCn (), capk , target ));
54
54
else
55
- logger .warn ("Cert (cn: {}) target filetype not supported" , cert .getCn (), target .getFileName ());
55
+ logger .warn ("Cert (cn: {}) target filetype not supported: {} " , cert .getCn (), target .getFileName ());
56
56
}));
57
57
}
58
58
@@ -68,7 +68,7 @@ public void write(RootCa rootCa)
68
68
else if (target .getFileName ().toString ().endsWith (".jks" ))
69
69
toRuntimeException (() -> writeRootCaJks (target ));
70
70
else
71
- logger .warn ("RootCa target filetype not supported" , target .getFileName ());
71
+ logger .warn ("RootCa target filetype not supported: {} " , target .getFileName ());
72
72
});
73
73
}
74
74
@@ -84,7 +84,7 @@ public void write(IssuingCa issuingCa)
84
84
else if (target .getFileName ().toString ().endsWith (".jks" ))
85
85
toRuntimeException (() -> writeIssuingCaJks (target ));
86
86
else
87
- logger .warn ("IssuingCa target filetype not supported" , target .getFileName ());
87
+ logger .warn ("IssuingCa target filetype not supported: {} " , target .getFileName ());
88
88
});
89
89
}
90
90
@@ -100,7 +100,7 @@ public void write(CaChain caChain)
100
100
else if (target .getFileName ().toString ().endsWith (".jks" ))
101
101
toRuntimeException (() -> writeCaChainJks (target ));
102
102
else
103
- logger .warn ("CaChain target filetype not supported" , target .getFileName ());
103
+ logger .warn ("CaChain target filetype not supported: {} " , target .getFileName ());
104
104
});
105
105
}
106
106
0 commit comments