Skip to content

Commit 9bc1ba5

Browse files
committed
handle exception
1 parent a041ec5 commit 9bc1ba5

File tree

1 file changed

+2
-3
lines changed
  • components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/util

1 file changed

+2
-3
lines changed

Diff for: components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/util/GovernanceUtils.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1069,9 +1069,8 @@ public static GovernanceArtifact retrieveGovernanceArtifactByPath(Registry regis
10691069
}*/
10701070

10711071
} catch (RegistryException e) {
1072-
String msg =
1073-
"Error in retrieving governance artifact by path. path: " + artifactPath + ".";
1074-
log.error(msg, e);
1072+
String msg = "Error in retrieving governance artifact by path. path: " + artifactPath + ".";
1073+
//log.error(msg, e);
10751074
throw new GovernanceException(msg, e);
10761075
}
10771076
return null;

0 commit comments

Comments
 (0)