From fbdd22909abc37bbc58df8194f3af9e54b98bfb0 Mon Sep 17 00:00:00 2001 From: j Date: Sun, 31 Mar 2024 00:22:49 -0400 Subject: [PATCH] addtl consoling --- src/rdrama/services/CommentFetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}`);