File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
app/src/main/java/org/lfenergy/compas/scl/auto/alignment/rest/v1 Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ public SclAutoAlignmentResource(SclAutoAlignmentService compasCimMappingService)
45
45
@ Consumes (MediaType .APPLICATION_XML )
46
46
@ Produces (MediaType .APPLICATION_XML )
47
47
public SclAutoAlignResponse alignment (@ Valid SclAutoAlignRequest request ) {
48
+ LOGGER .info ("Auto align SCL for Substation(s) {}." , request .getSubstationNames ());
49
+
48
50
String who = jsonWebToken .getClaim (userInfoProperties .who ());
49
51
LOGGER .trace ("Username used for Who {}" , who );
50
52
@@ -58,6 +60,7 @@ public SclAutoAlignResponse alignment(@Valid SclAutoAlignRequest request) {
58
60
@ Produces (MediaType .APPLICATION_SVG_XML )
59
61
@ Path ("/svg" )
60
62
public String svg (@ Valid SclAutoAlignSVGRequest request ) {
63
+ LOGGER .info ("Creating SVG for Substation {}." , request .getSubstationName ());
61
64
return sclAutoAlignmentService .getSVG (request .getSclData (), request .getSubstationName ());
62
65
}
63
66
}
You can’t perform that action at this time.
0 commit comments