Skip to content

Commit 891e79e

Browse files
committed
Fix QifExporter's log tag
1 parent 9d17e7d commit 891e79e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/org/gnucash/android/export/qif/QifExporter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class QifExporter extends Exporter{
6262
*/
6363
public QifExporter(ExportParams params){
6464
super(params, null);
65-
LOG_TAG = "OfxExporter";
65+
LOG_TAG = "QifExporter";
6666
}
6767

6868
/**
@@ -72,7 +72,7 @@ public QifExporter(ExportParams params){
7272
*/
7373
public QifExporter(ExportParams params, SQLiteDatabase db){
7474
super(params, db);
75-
LOG_TAG = "OfxExporter";
75+
LOG_TAG = "QifExporter";
7676
}
7777

7878
@Override

0 commit comments

Comments
 (0)