fix: remove unnecessary console.log
authorxangelo <me@xangelo.ca>
Sat, 5 Aug 2023 11:25:36 +0000 (07:25 -0400)
committerxangelo <me@xangelo.ca>
Sat, 5 Aug 2023 11:25:36 +0000 (07:25 -0400)
src/shared/time.ts

index 80123b344d314393ed776a5d89aecc38e1427875..0fb104f53bae6c4cc83fd7143a1354103a711c0e 100644 (file)
@@ -73,7 +73,6 @@ export class TimeManager {
 
   isNight(): boolean {
     const min = this.get24Hour();
-    console.log(min);
     return (
       min >= 0 && min < 5 ||
         min >= 21 && min < 24