mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Change scope key not found log to debug level log
(cherry picked from commit eadb2efb86)
This commit is contained in:
parent
922c775cfa
commit
43a6c289c5
@ -120,7 +120,9 @@ public class PublisherRESTAPIServicesImpl implements PublisherRESTAPIServices {
|
|||||||
throw new BadRequestException(msg);
|
throw new BadRequestException(msg);
|
||||||
} else if (HttpStatus.SC_NOT_FOUND == response.code()) {
|
} else if (HttpStatus.SC_NOT_FOUND == response.code()) {
|
||||||
String msg = "Shared scope key not found : " + key;
|
String msg = "Shared scope key not found : " + key;
|
||||||
log.info(msg);
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug(msg);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
String msg = "Response : " + response.code() + response.body();
|
String msg = "Response : " + response.code() + response.body();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user