prints
This commit is contained in:
@@ -275,9 +275,11 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
|
|||||||
final endDt = _toDateTime(sr.endTime);
|
final endDt = _toDateTime(sr.endTime);
|
||||||
final createdDt = _toDateTime(sr.createdAt);
|
final createdDt = _toDateTime(sr.createdAt);
|
||||||
print(
|
print(
|
||||||
'FindShifts local: shiftId=${sr.shiftId} roleId=${sr.roleId} '
|
'FindShifts mapped: shiftId=${sr.shiftId} '
|
||||||
'start=${startDt?.toIso8601String()} end=${endDt?.toIso8601String()} '
|
'origStart=${sr.startTime?.toJson()} '
|
||||||
'shiftDate=${shiftDate?.toIso8601String()}',
|
'origEnd=${sr.endTime?.toJson()} '
|
||||||
|
'mappedStart=${startDt != null ? DateFormat('HH:mm').format(startDt) : ''} '
|
||||||
|
'mappedEnd=${endDt != null ? DateFormat('HH:mm').format(endDt) : ''}',
|
||||||
);
|
);
|
||||||
mappedShifts.add(
|
mappedShifts.add(
|
||||||
Shift(
|
Shift(
|
||||||
|
|||||||
Reference in New Issue
Block a user