Skip to content

Commit 3473e1d

Browse files
Remove console logging (pterodactyl#2415)
Remove console logging, as its not an error being logged i see no reason for this to be printed when the startup page is viewed.
1 parent 10eeae0 commit 3473e1d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

resources/scripts/api/swr/getServerStartup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ interface Response {
99
}
1010

1111
export default (uuid: string, initialData?: Response) => useSWR([ uuid, '/startup' ], async (): Promise<Response> => {
12-
console.log('firing getServerStartup');
1312
const { data } = await http.get(`/api/client/servers/${uuid}/startup`);
1413

1514
const variables = ((data as FractalResponseList).data || []).map(rawDataToServerEggVariable);

0 commit comments

Comments
 (0)