👽 :):):):):):):)

pull/1/head
RYAN0UP_ 2018-04-10 10:27:40 +08:00
parent 4b27a6b165
commit 67279111f6
2 changed files with 5 additions and 4 deletions

View File

@ -5,6 +5,7 @@
[![JDK](https://img.shields.io/badge/JDK-1.8-yellow.svg)](#)
[![Spring Boot](https://img.shields.io/badge/Spring%20Boot-2.0.1-green.svg)](https://github.com/spring-projects/spring-boot)
[![GitHub release](https://img.shields.io/github/release/ruibaby/halo.svg)](https://github.com/ruibaby/halo/releases)
[![Travis CI](https://img.shields.io/travis/ruibaby/halo.svg)](https://travis-ci.org/ruibaby/halo)
------------------------------

View File

@ -50,7 +50,7 @@ public class StartupConfiguration implements ApplicationListener<ContextRefreshe
BaseController.THEME = themeValue;
}
}catch (Exception e){
log.error("未知错误:"+e.getMessage());
log.error("加载主题设置失败:{0}",e.getMessage());
}
}
@ -64,7 +64,7 @@ public class StartupConfiguration implements ApplicationListener<ContextRefreshe
HaloConst.OPTIONS = options;
}
}catch (Exception e){
log.error("未知错误:"+e.getMessage());
log.error("加载设置选项失败:{0}",e.getMessage());
}
}
@ -78,7 +78,7 @@ public class StartupConfiguration implements ApplicationListener<ContextRefreshe
HaloConst.ATTACHMENTS = attachments;
}
}catch (Exception e){
log.error("未知错误:"+e.getMessage());
log.error("加载所有文件失败:{0}",e.getMessage());
}
}
@ -93,7 +93,7 @@ public class StartupConfiguration implements ApplicationListener<ContextRefreshe
HaloConst.THEMES = themes;
}
}catch (Exception e){
log.error("加载主题失败:"+e.getMessage());
log.error("加载主题失败:{0}",e.getMessage());
}
}
}