Skip to content

Commit 297e48b

Browse files
authored
Merge pull request #2221 from wso2/Bhashinee-patch-1
Change the log level error to warn for the un-deploy errors where user is not required to do anything
2 parents b17305a + 026ce8b commit 297e48b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/main/java/org/apache/synapse/deployers/LibraryArtifactDeployer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public void undeploy(String fileName) throws DeploymentException {
205205
} else {
206206
String msg = "Artifact representing the filename " + fileName
207207
+ " is not deployed on Synapse";
208-
log.error(msg);
208+
log.warn(msg);
209209
throw new DeploymentException(msg);
210210
}
211211

0 commit comments

Comments
 (0)