diff --git a/src/rdrama/services/CommentFetcher.ts b/src/rdrama/services/CommentFetcher.ts index abbce01..77150c3 100644 --- a/src/rdrama/services/CommentFetcher.ts +++ b/src/rdrama/services/CommentFetcher.ts @@ -15,7 +15,7 @@ export class CommentFetcher { * @throws {Error} Throws an error if there is a failure in fetching comments from the API. */ static async fetchComments(page: number): Promise { - console.time(`Fetching page: ${page}`); + console.time(`${new Date()} Fetching page: ${page}`); try { const axiosInstance = SessionManager.getInstance().axiosInstance; const response = await axiosInstance.get(`/comments?page=${page}`);