|
|
@@ -221,7 +221,7 @@ public class UserspaceManagerController extends BaseController {
|
|
|
@Deprecated
|
|
|
public ModelMap unbindApp(Long spaceUU, String appId) {
|
|
|
if (StringUtils.isEmpty(spaceUU) || StringUtils.isEmpty(appId)) {
|
|
|
- LOGGER.error("企业({})解除绑定应用({})参数错误!", spaceUU, appId);
|
|
|
+ LOGGER.warn("企业({})解除绑定应用({})参数错误!", spaceUU, appId);
|
|
|
return error("参数错误");
|
|
|
}
|
|
|
|
|
|
@@ -240,7 +240,7 @@ public class UserspaceManagerController extends BaseController {
|
|
|
@RequestMapping(params = "_operate=bind", method = RequestMethod.POST)
|
|
|
public ModelMap bindApp(Long spaceUU, String appId) {
|
|
|
if (StringUtils.isEmpty(spaceUU) || StringUtils.isEmpty(appId)) {
|
|
|
- LOGGER.error("企业({})绑定应用({})参数错误!", spaceUU, appId);
|
|
|
+ LOGGER.warn("企业({})绑定应用({})参数错误!", spaceUU, appId);
|
|
|
return error("参数错误");
|
|
|
}
|
|
|
|