Showing
4 changed files
with
2 additions
and
0 deletions
No preview for this file type
No preview for this file type
No preview for this file type
... | @@ -154,6 +154,8 @@ async def thread(websocket, path): | ... | @@ -154,6 +154,8 @@ async def thread(websocket, path): |
154 | print(msg) | 154 | print(msg) |
155 | send = json.dumps({'status': 'success', 'student_id': verified_id}) | 155 | send = json.dumps({'status': 'success', 'student_id': verified_id}) |
156 | else: | 156 | else: |
157 | + msg='[{ip}] verification failed: {id} is already verified'.format(ip=remote_ip, id=verified_id) | ||
158 | + print(msg) | ||
157 | send = json.dumps({'status': 'already', 'student_id': verified_id}) | 159 | send = json.dumps({'status': 'already', 'student_id': verified_id}) |
158 | else: | 160 | else: |
159 | # 인증 실패 | 161 | # 인증 실패 | ... | ... |
-
Please register or login to post a comment