Merge pull request #718 from ayyoob/new-master

fixed an issue in the logging
This commit is contained in:
Vishanth 2017-04-26 15:21:03 +05:30 committed by GitHub
commit bfb2189466

View File

@ -215,7 +215,7 @@ public class DeviceTypePublisherAdminServiceImpl implements DeviceTypePublisherA
log.error("Failed to load tenant, tenantDomain: " + tenantDomain, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
} catch (ParseException e) {
log.error("Invalid stream definition for device type" + type " for tenant, tenantDomain: " + tenantDomain, e);
log.error("Invalid stream definition for device type" + type + " for tenant, tenantDomain: " + tenantDomain, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}