Skip to content

Commit ca9bf78

Browse files
committed
Change log level from debug to error
1 parent 3e2dff8 commit ca9bf78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

InkRecognition/app/src/main/java/com/azure/cognitiveservices/inkrecognitionsample/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protected void onCreate(Bundle savedInstanceState) {
1515
NoteTaker noteTaker = new NoteTaker(this);
1616
setContentView(noteTaker);
1717
} catch (Exception e) {
18-
Log.d(TAG, "Error in ink analysis", e);
18+
Log.e(TAG, "Exception", e);
1919
}
2020
}
2121
}

InkRecognition/app/src/main/java/com/azure/cognitiveservices/inkrecognitionsample/NoteTaker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected NoteTaker doInBackground(NoteTaker... params) {
8585
}
8686
} catch (Exception e) {
8787
e.printStackTrace();
88-
Log.d(TAG, "Error while fetching the response", e);
88+
Log.e(TAG, "Error in fetching data from SDK", e);
8989
}
9090
return noteTaker;
9191
}

0 commit comments

Comments
 (0)