zed-industries / zed

Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
https://zed.dev
Other
46.87k stars 2.68k forks source link

Error Message Overflows #16011

Open Rhysjosmin opened 1 month ago

Rhysjosmin commented 1 month ago

Check for existing issues

Describe the bug / provide steps to reproduce it

Got a long type error message which cuts off at the end with this code

`"use client"; import { Button } from "@/components/ui/button"; import { Label } from "@/components/ui/label"; import { Slider } from "@/components/ui/slider"; import { useState, useEffect } from "react"; import { addDays, addMinutes, format, isEqual, parse, isSameHour, isSameMinute, isWithinInterval, subMinutes, isBefore, addHours, isAfter, } from "date-fns"; import { addOrdinalSuffix, isSameDateNoTime } from "@/lib/date-utils"; import { Input } from "@/components/ui/input"; import { supabase } from "@/supabase"; import { db } from "@/firebase"; import { UserSquare } from "lucide-react"; import { CheckDateForBookings, CreateBooking } from "@/functions/database"; export default function Page() { const [duration, setDuration] = useState(1); const [username, setUsername] = useState(""); const [email, setEmail] = useState("");

const [previousBookings, setPreviousBookings] = useState<null | Array<{ booking_id: string; date: string; time: string; booking: { duration: number; entire_day_is_blocked: boolean; }; }>>(null); const [groupSize, setGroupSize] = useState(1); const [selectedDate, setSelectedDate] = useState(addDays(new Date(), 1)); const [selectedTime, setSelectedTime] = useState( parse("09:00 AM", "hh:mm a", new Date()), ); const [stage, setStage] = useState(1); const [dateOffset, setDateOffset] = useState(0); useEffect(() => { console.log(selectedDate); }, [selectedDate]);

useEffect(() => { console.log(previousBookings); }, [previousBookings]); useEffect(() => { CheckDateForBookings(selectedDate).then((d) => setPreviousBookings(d)); }, [stage, selectedDate]); return (

Book a spot at the Second City Studio Stage : {stage}

{stage == 1 && (

{duration}

setDuration(v[0])} />

{groupSize}

{" "} setGroupSize(v[0])} />
)} {stage == 2 && (
{Array.from({ length: 15 }).map((_, index) => { const date = addDays(new Date(), index + 1 + dateOffset); const isSelected = isSameDateNoTime(date, selectedDate); // Check if the entire day is blocked const isDayBlocked = previousBookings?.some( (booking) => booking.entire_day_is_blocked && isSameDateNoTime( date, parse(booking.time, "yyyy-MM-dd", new Date()), ), ); return ( ); })}
)} {stage == 3 && (
{Array.from({ length: 25 }).map((_, index) => { const time = addMinutes( parse("09:00 AM", "hh:mm a", new Date()), index * 30, ); let isDisabled = false; const isSelected = (isSameHour(time, selectedTime) && isSameMinute(time, selectedTime)) || (isBefore(time, addHours(selectedTime, duration)) && isAfter(time, selectedTime)); if (previousBookings) { previousBookings.forEach((booking) => { if (booking.time) { // Create a set of times occupied by previous bookings const occupiedTimes = new Set( Array.from({ length: duration * 2 }).map((_, i) => format( addMinutes( parse(booking.time, "HH:mm:ss", new Date()), (i - 1) * 30, ), "HH:mm:ss", ), ), ); // Check if any of the times in the current slot's duration are occupied const currentSlotTimes = Array.from({ length: duration * 2, }).map((_, i) => format(addMinutes(time, i * 30), "HH:mm:ss"), ); isDisabled = currentSlotTimes.some((slotTime) => occupiedTimes.has(slotTime), ) || booking.booking.entire_day_is_blocked; } }); } return ( ); })}
)} {stage == 4 && (
Personal Information
setUsername(e.target.value)} /> setEmail(e.target.value)} />
)} {stage == 5 &&
Pay Up
}
Selected Date : {format(selectedDate, "d MMM yy")}
Group Size : {groupSize}
{" "} Duration : {duration} {duration > 1 ? "Hours" : "Hour"}
{" "} Time : {format(selectedTime, "hh:mm a")} -{" "} {format(addHours(selectedTime, duration), "hh:mm a")}
Name : {username}
Email : {email}

); } `

`export async function CheckDateForBookings(date: Date) { let { data: booked_slots, error: booking_error } = await supabase .from("booking_slots") .select("booking_id,date,time,booking(entire_day_is_blocked,duration)") .eq("date", format(date, "yyyy-MM-dd"));

console.log("booking_error", booking_error); console.log("Booked_slots", booked_slots); if (!booked_slots) { console.log("doesnt exist"); return; }

return booked_slots; }`

Environment

Zed: v0.147.2 (Zed) OS: Linux Wayland zorin 17 Memory: 22.9 GiB Architecture: x86_64 GPU: AMD Unknown (RADV RENOIR) || radv || Mesa 23.2.1-1ubuntu3.1~22.04.2

If applicable, add mockups / screenshots to help explain present your vision of the feature

image

If applicable, attach your Zed.log file to this issue.

Zed.log

2024-08-09T06:26:46.955703623+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:26:46.955811258+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:26:51.958057692+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:26:51.958367484+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:26:51.958484007+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:26:51.958564291+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14376, tv_nsec: 66172167 } }
2024-08-09T06:26:52.459007751+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:26:52.459162247+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:26:52.81364139+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T06:26:53.552417058+05:30 [INFO] perform;
2024-08-09T06:26:53.552563789+05:30 [INFO] read_command;
2024-08-09T06:26:53.552658319+05:30 [INFO] read_command;
2024-08-09T06:26:53.552837462+05:30 [INFO] socket reader;
2024-08-09T06:26:53.585787452+05:30 [INFO] add connection to peer
2024-08-09T06:26:53.585878696+05:30 [INFO] add_connection;
2024-08-09T06:26:53.585966674+05:30 [INFO] waiting for server hello
2024-08-09T06:26:53.586067407+05:30 [INFO] got server hello
2024-08-09T06:26:53.58613707+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 7 }, peer id: PeerId { owner_id: 469, id: 634711 })
2024-08-09T06:26:53.586269613+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 634711 }, connection_id: ConnectionId { owner_id: 0, id: 7 } }
2024-08-09T06:27:13.825848612+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T06:27:13.826188422+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T06:27:13.827021444+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:27:13.827280329+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:27:18.833858901+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:27:18.834088129+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:27:18.834195254+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:27:18.834273624+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14402, tv_nsec: 941881590 } }
2024-08-09T06:27:19.335071624+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:27:19.335456299+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:27:19.755507898+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T06:27:20.478099626+05:30 [INFO] perform;
2024-08-09T06:27:20.478234635+05:30 [INFO] read_command;
2024-08-09T06:27:20.478329776+05:30 [INFO] read_command;
2024-08-09T06:27:20.478487317+05:30 [INFO] socket reader;
2024-08-09T06:27:20.50261114+05:30 [INFO] add connection to peer
2024-08-09T06:27:20.502696483+05:30 [INFO] add_connection;
2024-08-09T06:27:20.502782708+05:30 [INFO] waiting for server hello
2024-08-09T06:27:20.50300891+05:30 [INFO] got server hello
2024-08-09T06:27:20.503079194+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 8 }, peer id: PeerId { owner_id: 469, id: 634947 })
2024-08-09T06:27:20.503211798+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 634947 }, connection_id: ConnectionId { owner_id: 0, id: 8 } }
2024-08-09T06:27:52.75592921+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T06:27:52.756052015+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T06:27:52.756336448+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:27:52.75644186+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:27:57.761266881+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:27:57.761750867+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:27:57.761831691+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:27:57.761890824+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14441, tv_nsec: 869498851 } }
2024-08-09T06:27:58.262900999+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:27:58.264355059+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:28:04.352775173+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T06:28:18.268005899+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:28:18.268116581+05:30 [ERROR] failed to connect timed out trying to establish connection
2024-08-09T06:28:18.268183178+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14462, tv_nsec: 752855105 } }
2024-08-09T06:28:19.145465309+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:28:19.145564419+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:28:24.147064668+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:28:24.147231507+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:28:24.147335275+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:28:24.147419055+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14469, tv_nsec: 580389258 } }
2024-08-09T06:28:25.973098976+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:28:25.973217232+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:28:28.153181613+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T06:28:45.973559285+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:28:45.973698301+05:30 [ERROR] failed to connect timed out trying to establish connection
2024-08-09T06:28:45.973774487+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14492, tv_nsec: 850047558 } }
2024-08-09T06:28:49.243026859+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:28:49.243951376+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:28:54.249506919+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:28:54.25195144+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:28:54.252237687+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:28:54.252507813+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14499, tv_nsec: 578230414 } }
2024-08-09T06:28:55.974362467+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:28:55.975642744+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:29:00.983784714+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:29:00.984021456+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T06:29:00.984440126+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T06:29:00.984528415+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 14506, tv_nsec: 930453856 } }
2024-08-09T06:29:03.323042477+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T06:29:03.323157276+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T06:29:03.661256121+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T06:29:04.381587411+05:30 [INFO] perform;
2024-08-09T06:29:04.381701779+05:30 [INFO] read_command;
2024-08-09T06:29:04.381886933+05:30 [INFO] read_command;
2024-08-09T06:29:04.382111823+05:30 [INFO] socket reader;
2024-08-09T06:29:04.407283236+05:30 [INFO] add connection to peer
2024-08-09T06:29:04.407376303+05:30 [INFO] add_connection;
2024-08-09T06:29:04.407471626+05:30 [INFO] waiting for server hello
2024-08-09T06:29:04.40755749+05:30 [INFO] got server hello
2024-08-09T06:29:04.407640488+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 9 }, peer id: PeerId { owner_id: 469, id: 635955 })
2024-08-09T06:29:04.407789994+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 635955 }, connection_id: ConnectionId { owner_id: 0, id: 9 } }
2024-08-09T06:57:32.000354202+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T06:57:32.000595223+05:30 [ERROR] request or operation took longer than the configured timeout time

Caused by:
    [28] Timeout was reached
2024-08-09T07:01:31.392210239+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T07:01:31.392318733+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T07:01:31.392573161+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:01:31.392655866+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:01:32.104921926+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T07:01:32.817336419+05:30 [INFO] perform;
2024-08-09T07:01:32.817453088+05:30 [INFO] read_command;
2024-08-09T07:01:32.817540022+05:30 [INFO] read_command;
2024-08-09T07:01:32.817684243+05:30 [INFO] socket reader;
2024-08-09T07:01:32.827661517+05:30 [INFO] add connection to peer
2024-08-09T07:01:32.827722211+05:30 [INFO] add_connection;
2024-08-09T07:01:32.827783436+05:30 [INFO] waiting for server hello
2024-08-09T07:01:32.827861944+05:30 [INFO] got server hello
2024-08-09T07:01:32.827931825+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 10 }, peer id: PeerId { owner_id: 469, id: 655415 })
2024-08-09T07:01:32.828047031+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 655415 }, connection_id: ConnectionId { owner_id: 0, id: 10 } }
2024-08-09T07:18:41.432515068+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T07:18:41.432626651+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T07:18:41.432870414+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:18:41.432965004+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:18:44.376442169+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T07:18:45.108990173+05:30 [INFO] perform;
2024-08-09T07:18:45.109116082+05:30 [INFO] read_command;
2024-08-09T07:18:45.109464034+05:30 [INFO] read_command;
2024-08-09T07:18:45.109630281+05:30 [INFO] socket reader;
2024-08-09T07:18:45.132598866+05:30 [INFO] add connection to peer
2024-08-09T07:18:45.132682345+05:30 [INFO] add_connection;
2024-08-09T07:18:45.132775191+05:30 [INFO] waiting for server hello
2024-08-09T07:18:45.132856726+05:30 [INFO] got server hello
2024-08-09T07:18:45.132935957+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 11 }, peer id: PeerId { owner_id: 469, id: 665248 })
2024-08-09T07:18:45.133082887+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 665248 }, connection_id: ConnectionId { owner_id: 0, id: 11 } }
2024-08-09T07:21:22.519710534+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T07:21:22.521581364+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T07:21:22.525539026+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:21:22.527434915+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:21:22.910318548+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T07:21:23.665304818+05:30 [INFO] perform;
2024-08-09T07:21:23.665585142+05:30 [INFO] read_command;
2024-08-09T07:21:23.666530631+05:30 [INFO] read_command;
2024-08-09T07:21:23.673001807+05:30 [INFO] socket reader;
2024-08-09T07:21:23.717853616+05:30 [INFO] add connection to peer
2024-08-09T07:21:23.718142065+05:30 [INFO] add_connection;
2024-08-09T07:21:23.718328109+05:30 [INFO] waiting for server hello
2024-08-09T07:21:23.719519948+05:30 [INFO] got server hello
2024-08-09T07:21:23.719677237+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 12 }, peer id: PeerId { owner_id: 469, id: 666761 })
2024-08-09T07:21:23.720864857+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 666761 }, connection_id: ConnectionId { owner_id: 0, id: 12 } }
2024-08-09T07:21:32.000278732+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T07:21:32.000460298+05:30 [ERROR] request or operation took longer than the configured timeout time

Caused by:
    [28] Timeout was reached
2024-08-09T07:21:33.95704328+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T07:21:33.957434224+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T07:21:33.957683679+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:21:33.957779802+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:21:38.959247033+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T07:21:38.959420353+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T07:21:38.959527266+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T07:21:38.959612789+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 17663, tv_nsec: 67220856 } }
2024-08-09T07:21:39.459949558+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:21:39.46008759+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:21:39.777969201+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T07:21:40.496605406+05:30 [INFO] perform;
2024-08-09T07:21:40.496733569+05:30 [INFO] read_command;
2024-08-09T07:21:40.496834091+05:30 [INFO] read_command;
2024-08-09T07:21:40.496996911+05:30 [INFO] socket reader;
2024-08-09T07:21:40.52515595+05:30 [INFO] add connection to peer
2024-08-09T07:21:40.525243397+05:30 [INFO] add_connection;
2024-08-09T07:21:40.525332947+05:30 [INFO] waiting for server hello
2024-08-09T07:21:40.525405986+05:30 [INFO] got server hello
2024-08-09T07:21:40.525475949+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 13 }, peer id: PeerId { owner_id: 469, id: 666953 })
2024-08-09T07:21:40.525611628+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 666953 }, connection_id: ConnectionId { owner_id: 0, id: 13 } }
2024-08-09T07:39:29.087239417+05:30 [ERROR] connection error: delay between messages too long
2024-08-09T07:39:29.087358023+05:30 [INFO] set status on client 176256: ConnectionLost
2024-08-09T07:39:29.087632036+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:39:29.08772869+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:39:38.471121768+05:30 [WARN] request completed with error: request or operation took longer than the configured timeout time
2024-08-09T07:39:38.471281743+05:30 [INFO] set status on client 176256: ConnectionError
2024-08-09T07:39:38.471405199+05:30 [ERROR] failed to connect request or operation took longer than the configured timeout time
2024-08-09T07:39:38.471487526+05:30 [INFO] set status on client 176256: ReconnectionError { next_reconnection: Instant { tv_sec: 18742, tv_nsec: 579095513 } }
2024-08-09T07:39:38.971872251+05:30 [INFO] set status on client 176256: Reauthenticating
2024-08-09T07:39:38.971994935+05:30 [INFO] set status on client 176256: Reconnecting
2024-08-09T07:39:39.365486273+05:30 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc
2024-08-09T07:39:40.120973623+05:30 [INFO] perform;
2024-08-09T07:39:40.12110334+05:30 [INFO] read_command;
2024-08-09T07:39:40.121227507+05:30 [INFO] read_command;
2024-08-09T07:39:40.121396309+05:30 [INFO] socket reader;
2024-08-09T07:39:40.146147769+05:30 [INFO] add connection to peer
2024-08-09T07:39:40.146239694+05:30 [INFO] add_connection;
2024-08-09T07:39:40.146334074+05:30 [INFO] waiting for server hello
2024-08-09T07:39:40.146556759+05:30 [INFO] got server hello
2024-08-09T07:39:40.146638205+05:30 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 14 }, peer id: PeerId { owner_id: 469, id: 677609 })
2024-08-09T07:39:40.146783201+05:30 [INFO] set status on client 176256: Connected { peer_id: PeerId { owner_id: 469, id: 677609 }, connection_id: ConnectionId { owner_id: 0, id: 14 } }
2024-08-09T08:02:08.19086028+05:30 [INFO] Language server with id 3 sent unhandled notification @/tailwindCSS/projectInitialized:
[
  null
]
2024-08-09T08:14:21.741231269+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 68
}
2024-08-09T08:14:22.070249103+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:15:19.668526939+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:15:41.221740772+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 32
}
2024-08-09T08:15:42.344527473+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 48
}
2024-08-09T08:17:48.853418452+05:30 [INFO] Using surface present mode MAILBOX
2024-08-09T08:17:48.854631877+05:30 [WARN] Unable to forbid exclusive full screen
2024-08-09T08:18:31.179154221+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 380
}
2024-08-09T08:18:31.292550764+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 20
}
2024-08-09T08:18:32.971169966+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 96
}
2024-08-09T08:18:36.926098473+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 73
}
2024-08-09T08:18:38.519579837+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 122
}
2024-08-09T08:18:41.237316753+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 54
}
2024-08-09T08:18:42.07597584+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 66
}
2024-08-09T08:18:44.462390656+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 51
}
2024-08-09T08:18:48.049510987+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 84
}
2024-08-09T08:18:48.443363807+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 72
}
2024-08-09T08:18:48.649443141+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 71
}
2024-08-09T08:18:49.209437909+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 70
}
2024-08-09T08:18:49.49699881+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 85
}
2024-08-09T08:18:49.637236884+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 64
}
2024-08-09T08:18:51.27464925+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 72
}
2024-08-09T08:18:51.506849973+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 72
}
2024-08-09T08:18:51.92054337+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 63
}
2024-08-09T08:18:52.075273027+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 65
}
2024-08-09T08:18:52.247149865+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 74
}
2024-08-09T08:18:52.398079012+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 57
}
2024-08-09T08:18:52.624957122+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 43
}
2024-08-09T08:18:52.736243765+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 48
}
2024-08-09T08:18:59.05549407+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 40
}
2024-08-09T08:18:59.222573455+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 32
}
2024-08-09T08:19:00.878767686+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 51
}
2024-08-09T08:19:01.581652163+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 59
}
2024-08-09T08:19:01.750174258+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 69
}
2024-08-09T08:19:01.899603683+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 54
}
2024-08-09T08:19:02.098368229+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:19:02.303827346+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 53
}
2024-08-09T08:19:02.53901789+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 69
}
2024-08-09T08:19:02.649618564+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 39
}
2024-08-09T08:19:03.110464772+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 12
}
2024-08-09T08:19:03.405631266+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 10
}
2024-08-09T08:19:07.587456168+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 11
}
2024-08-09T08:19:08.121662907+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 11
}
2024-08-09T08:19:12.036513711+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 101
}
2024-08-09T08:19:12.887548096+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 53
}
2024-08-09T08:19:12.975894084+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 58
}
2024-08-09T08:19:34.97202789+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 51
}
2024-08-09T08:19:50.119596502+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 130
}
2024-08-09T08:19:50.517495123+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 99
}
2024-08-09T08:19:51.789113796+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 94
}
2024-08-09T08:19:55.645081587+05:30 [INFO] perform;
2024-08-09T08:19:55.645216734+05:30 [INFO] read_command;
2024-08-09T08:19:55.645339899+05:30 [INFO] read_command;
2024-08-09T08:19:55.645510354+05:30 [INFO] socket reader;
2024-08-09T08:19:55.663202814+05:30 [ERROR] credentials not found
2024-08-09T08:20:03.529974258+05:30 [INFO] Creating a descriptor pool for at most 4096 sets
2024-08-09T08:20:03.560328418+05:30 [INFO] Creating a descriptor pool for at most 4096 sets
2024-08-09T08:20:10.982119561+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 84
}
2024-08-09T08:20:11.818647125+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 75
}
2024-08-09T08:21:02.99438761+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 114
}
2024-08-09T08:21:03.455307785+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 74
}
2024-08-09T08:21:03.610121105+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 89
}
2024-08-09T08:21:03.658656634+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 45
}
2024-08-09T08:21:03.704312902+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 48
}
2024-08-09T08:21:03.760206806+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:21:03.829329966+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 46
}
2024-08-09T08:21:03.906557244+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 65
}
2024-08-09T08:21:03.987079316+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 53
}
2024-08-09T08:21:04.05822848+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:21:04.114363235+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 46
}
2024-08-09T08:21:04.220544941+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 87
}
2024-08-09T08:21:04.26459298+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 49
}
2024-08-09T08:21:04.30715164+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 41
}
2024-08-09T08:21:04.334564117+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:04.375833457+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 34
}
2024-08-09T08:21:04.417565949+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 37
}
2024-08-09T08:21:04.454622002+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 34
}
2024-08-09T08:21:04.491489346+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 37
}
2024-08-09T08:21:04.536954287+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 32
}
2024-08-09T08:21:04.572502905+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 35
}
2024-08-09T08:21:04.625826598+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 37
}
2024-08-09T08:21:04.650847634+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:04.724088528+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 30
}
2024-08-09T08:21:04.808553361+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 85
}
2024-08-09T08:21:04.860748+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 31
}
2024-08-09T08:21:04.881387179+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 38
}
2024-08-09T08:21:04.929580916+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:04.981355423+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 54
}
2024-08-09T08:21:05.021266992+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 45
}
2024-08-09T08:21:05.094284069+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 66
}
2024-08-09T08:21:05.123755023+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 35
}
2024-08-09T08:21:05.203840012+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 61
}
2024-08-09T08:21:05.237578095+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 48
}
2024-08-09T08:21:05.3048168+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 48
}
2024-08-09T08:21:05.340797702+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 35
}
2024-08-09T08:21:05.378334743+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 24
}
2024-08-09T08:21:05.403464106+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 25
}
2024-08-09T08:21:05.424158459+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 24
}
2024-08-09T08:21:05.472172584+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 23
}
2024-08-09T08:21:05.520845204+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 41
}
2024-08-09T08:21:05.544477583+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 25
}
2024-08-09T08:21:05.57354144+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 24
}
2024-08-09T08:21:11.266241443+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:11.815600677+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 43
}
2024-08-09T08:21:11.844803189+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 32
}
2024-08-09T08:21:11.910260886+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 34
}
2024-08-09T08:21:11.934463152+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 38
}
2024-08-09T08:21:11.970159078+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 33
}
2024-08-09T08:21:12.009795163+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 35
}
2024-08-09T08:21:12.091939698+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 30
}
2024-08-09T08:21:12.093172109+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:12.132458346+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:12.150137649+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 33
}
2024-08-09T08:21:12.210086768+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 34
}
2024-08-09T08:21:12.228852223+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:12.287161755+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:12.32566111+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:12.381784052+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 50
}
2024-08-09T08:21:12.480353476+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 58
}
2024-08-09T08:21:12.516275486+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 60
}
2024-08-09T08:21:12.564167177+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 40
}
2024-08-09T08:21:12.596194147+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 31
}
2024-08-09T08:21:12.642975139+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:21:12.687625908+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 32
}
2024-08-09T08:21:12.717653344+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 30
}
2024-08-09T08:21:12.751962367+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:12.780879915+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:12.818878635+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 27
}
2024-08-09T08:21:12.854252268+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 35
}
2024-08-09T08:21:12.939558626+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 72
}
2024-08-09T08:21:12.968921625+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:13.016354991+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 26
}
2024-08-09T08:21:13.071283985+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 28
}
2024-08-09T08:21:13.121966439+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 47
}
2024-08-09T08:21:13.148628695+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 26
}
2024-08-09T08:21:13.255967037+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 67
}
2024-08-09T08:21:13.272041789+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 29
}
2024-08-09T08:21:13.316157397+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/app/(main)/(Booking)/Book/page.tsx",
  "state": 1,
  "validationTime": 33
}
2024-08-09T08:23:37.067243568+05:30 [INFO] Using surface present mode MAILBOX
2024-08-09T08:23:37.067895631+05:30 [WARN] Unable to forbid exclusive full screen
2024-08-09T08:24:29.702312693+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 71
}
2024-08-09T08:24:30.494063514+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 56
}
2024-08-09T08:25:02.542938201+05:30 [INFO] Language server with id 3 sent unhandled notification @/tailwindCSS/getDocumentSymbols:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx"
}
2024-08-09T08:25:02.559057205+05:30 [WARN] Generic lsp request to vtsls failed: Request textDocument/completion failed with message: Reduce of empty array with no initial value
2024-08-09T08:25:02.57907882+05:30 [INFO] Language server with id 2 sent unhandled notification eslint/status:
{
  "uri": "file:///home/rhys/Documents/Rhys/Bear-NFT/second-city/src/functions/database.tsx",
  "state": 1,
  "validationTime": 39
}

JosephTLyons commented 1 month ago

Related: