Skip to content

Commit 54ed0bd

Browse files
committed
style: 로그 원복
1 parent d8553ba commit 54ed0bd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

DevLog/Infra/Service/TodoService.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,11 @@ final class TodoService {
3636
query.isPinned != nil ? "pinned=\(query.isPinned!)" : nil,
3737
query.completionFilter.isCompletedValue != nil ? "completed=\(query.completionFilter.isCompletedValue!)" : nil,
3838
query.dueDateFilter != .all ? "dueDateFilter=\(query.dueDateFilter)" : nil,
39+
query.createdAtFrom != nil ? "createdAtFrom=\(query.createdAtFrom!)" : nil,
40+
query.createdAtTo != nil ? "createdAtTo=\(query.createdAtTo!)" : nil,
3941
"pageSize=\(query.pageSize)",
40-
query.fetchAllPages ? "fetchAllPages=true" : nil
42+
query.fetchAllPages ? "fetchAllPages=true" : nil,
43+
cursor != nil ? "cursor=\(cursor!)" : nil
4144
]
4245
logger.info("Fetching todo page: \(logComponents.compactMap { $0 }.joined(separator: ", "))")
4346

0 commit comments

Comments
 (0)