Skip to content

Commit

Permalink
Update: print() 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyukjin committed Feb 8, 2024
1 parent 466c3d4 commit e734005
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 2 deletions.
Binary file not shown.
1 change: 0 additions & 1 deletion iOS/Ringo/Ringo/Screens/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ extension ViewController {
let controller = TabBarViewController()
nav.viewControllers = [controller]
self.present(nav, animated: true, completion: nil)
print(data)
} else {
let alert = UIAlertController(title: data, message: "", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "확인", style: .cancel, handler: nil))
Expand Down
1 change: 0 additions & 1 deletion iOS/Ringo/Ringo/SigninService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class SigninSercive {
}
}
private func judgeStatus(by statusCode: Int, _ data: Data) -> NetworkResult<Any> {
print(statusCode)
switch statusCode {
case ..<300 : return isVaildData(data: data)
case 400..<500 : return .pathErr
Expand Down

0 comments on commit e734005

Please sign in to comment.