소스 검색

Use console.log instead of breakpoint

Andrew Patton 10 년 전
부모
커밋
71cefc95ab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      public/js/app.js

+ 1 - 1
public/js/app.js

@@ -675,7 +675,7 @@ function initIssue() {
             var xhr = new XMLHttpRequest();
 
             xhr.addEventListener("error", function() {
-                debugger;
+                console.log("Issue submit request failed. xhr.status: " + xhr.status);
             });
 
             xhr.addEventListener("load", function() {