Showing
2 changed files
with
2 additions
and
2 deletions
@@ -10,7 +10,6 @@ use WebPlugin\Helpers; | @@ -10,7 +10,6 @@ use WebPlugin\Helpers; | ||
10 | use WebPlugin\Images; | 10 | use WebPlugin\Images; |
11 | use LibModels\Web\Home\MessageData; | 11 | use LibModels\Web\Home\MessageData; |
12 | use WebPlugin\Cache; | 12 | use WebPlugin\Cache; |
13 | -use WebPlugin\UdpLog; | ||
14 | 13 | ||
15 | /** | 14 | /** |
16 | * 个人中心-用户相关业务逻辑处理 | 15 | * 个人中心-用户相关业务逻辑处理 |
@@ -491,7 +490,6 @@ class UserModel | @@ -491,7 +490,6 @@ class UserModel | ||
491 | * 学生认证入口开关,zookeeper中配置 | 490 | * 学生认证入口开关,zookeeper中配置 |
492 | */ | 491 | */ |
493 | public static function getStudentEntryStatus() { | 492 | public static function getStudentEntryStatus() { |
494 | - UdpLog::debug('studentSwitch: ', Cache::getBy('zookeeper:/pc/user/removeStudentIdentification')); | ||
495 | return USE_CACHE && Cache::getBy('zookeeper:/pc/user/removeStudentIdentification') === 'true' ? true : false; | 493 | return USE_CACHE && Cache::getBy('zookeeper:/pc/user/removeStudentIdentification') === 'true' ? true : false; |
496 | } | 494 | } |
497 | } | 495 | } |
@@ -5,6 +5,7 @@ use WebPlugin\Helpers; | @@ -5,6 +5,7 @@ use WebPlugin\Helpers; | ||
5 | use Home\UserModel; | 5 | use Home\UserModel; |
6 | use Home\IndexModel; | 6 | use Home\IndexModel; |
7 | use LibModels\Web\Home\OrderData; | 7 | use LibModels\Web\Home\OrderData; |
8 | +use WebPlugin\UdpLog; | ||
8 | 9 | ||
9 | /** | 10 | /** |
10 | * 个人中心首页 | 11 | * 个人中心首页 |
@@ -87,6 +88,7 @@ class IndexController extends WebAction | @@ -87,6 +88,7 @@ class IndexController extends WebAction | ||
87 | 'banner' => IndexModel::getFooterBanner(), | 88 | 'banner' => IndexModel::getFooterBanner(), |
88 | 'helpUsUrl' => '' | 89 | 'helpUsUrl' => '' |
89 | ); | 90 | ); |
91 | + UdpLog::debug('students:'.$data['certifiedName']); | ||
90 | $this->_view->display('index', array('meIndexPage' => true, 'me' => $data)); | 92 | $this->_view->display('index', array('meIndexPage' => true, 'me' => $data)); |
91 | } | 93 | } |
92 | } | 94 | } |
-
Please register or login to post a comment