Skip to content

Commit

Permalink
Change the log level error to warn for the un-deploy errors where use…
Browse files Browse the repository at this point in the history
…r is not required to do anything
  • Loading branch information
Bhashinee authored Oct 9, 2024
1 parent b17305a commit 026ce8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void undeploy(String fileName) throws DeploymentException {
} else {
String msg = "Artifact representing the filename " + fileName
+ " is not deployed on Synapse";
log.error(msg);
log.warn(msg);
throw new DeploymentException(msg);
}

Expand Down

0 comments on commit 026ce8b

Please sign in to comment.