chore: clean-up logging

This commit is contained in:
PartyDonut 2024-10-19 17:10:06 +02:00
parent 8e2ce7861b
commit 28d6704c70
2 changed files with 0 additions and 6 deletions

View file

@ -1,5 +1,4 @@
import 'dart:convert';
import 'dart:developer';
import 'dart:io';
import 'dart:ui';
@ -73,9 +72,7 @@ void main() async {
if (kIsWeb) {
html.document.onContextMenu.listen((event) => event.preventDefault());
final result = await loadConfig();
log(result.toString());
FladderConfig.fromJson(result);
log(FladderConfig.baseUrl.toString());
}
final sharedPreferences = await SharedPreferences.getInstance();

View file

@ -1,5 +1,3 @@
import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:ficonsax/ficonsax.dart';
@ -26,7 +24,6 @@ class _FullScreenButtonState extends State<FullScreenButton> {
setState(() {
isFullScreen = fullScreen;
});
log(isFullScreen.toString());
}
@override