Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
fix(logging): add text to better identify log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Feb 2, 2020
1 parent e2a4e0e commit 4563f23
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ public TimeTable getTotalDifferences(TimeTable savedTimeTable, String className)
for (TimeTableDay saved_ttd : savedDays) {
if (ttd.isSameDay(saved_ttd)) {
Logger.d(TAG, String.format("Dates are the same - %s | %s", ttd.getDateString(), saved_ttd.getDateString()));
Logger.d(TAG, String.format("%s", ttd.getElements(className).toString()));
Logger.d(TAG, String.format("%s", saved_ttd.getElements(className).toString()));
Logger.d(TAG, String.format("New TTD : %s", ttd.getElements(className).toString()));
Logger.d(TAG, String.format("Stored TTD: %s", saved_ttd.getElements(className).toString()));
differencesTimeTable.addDay(ttd.getDifferences(saved_ttd, className));
newDay = false;
break;
Expand Down

0 comments on commit 4563f23

Please sign in to comment.