Skip to content

Commit

Permalink
Merge pull request #2221 from wso2/Bhashinee-patch-1
Browse files Browse the repository at this point in the history
Change the log level error to warn for the un-deploy errors where user is not required to do anything
  • Loading branch information
Bhashinee authored Oct 9, 2024
2 parents b17305a + 026ce8b commit 297e48b
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 297e48b

Please sign in to comment.