diff --git a/src/renderer/components/Logs.tsx b/src/renderer/components/Logs.tsx
index 1fc0a5a40ddface321b1e0404476ef96b0b1a7e2..0fc0acff0cdc7b95be61eb75b1d15372fcd5c723 100644
--- a/src/renderer/components/Logs.tsx
+++ b/src/renderer/components/Logs.tsx
@@ -26,13 +26,6 @@ function isToday(someDateString) {
   const someDate = new Date(someDateString);
   const today = new Date();
 
-  const t =
-    someDate.getDate() === today.getDate() &&
-    someDate.getMonth() === today.getMonth() &&
-    someDate.getFullYear() === today.getFullYear();
-
-  console.log(t);
-  console.log(someDate + ' - ' + today);
   return (
     someDate.getDate() === today.getDate() &&
     someDate.getMonth() === today.getMonth() &&