Skip to content

Commit 4aa74ca

Browse files
committed
Add spacing in log messages for readability
- oops, forgot to add some spacing in log messages
1 parent 701fc6e commit 4aa74ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/net/sqlcipher/database/SQLiteDatabase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,7 @@ public long insert(String table, String nullColumnHack, ContentValues values) {
14841484
try {
14851485
return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
14861486
} catch (SQLException e) {
1487-
Log.e(TAG, "Error inserting <redacted values> into" + table, e);
1487+
Log.e(TAG, "Error inserting <redacted values> into " + table, e);
14881488
return -1;
14891489
}
14901490
}
@@ -1523,7 +1523,7 @@ public long replace(String table, String nullColumnHack, ContentValues initialVa
15231523
return insertWithOnConflict(table, nullColumnHack, initialValues,
15241524
CONFLICT_REPLACE);
15251525
} catch (SQLException e) {
1526-
Log.e(TAG, "Error inserting <redacted values> into" + table, e);
1526+
Log.e(TAG, "Error inserting <redacted values> into " + table, e);
15271527
return -1;
15281528
}
15291529
}

0 commit comments

Comments
 (0)