Skip to content

Commit

Permalink
removed unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
RunTerror committed Feb 19, 2024
1 parent 60ef160 commit bd449ea
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lib/services/database_mutation_functions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class DataBaseMutationFunctions {
clientNonAuth = await ValueNotifier(graphqlConfig!.clientToQuery());
ValueNotifier(clientNonAuth);
if (1 == 1) {
log('this is started');
clientAuth = await graphqlConfig!.authClient();
}
_authQuery = AuthQueries();
Expand Down Expand Up @@ -193,7 +192,6 @@ class DataBaseMutationFunctions {
navigationService!.pushReplacementScreen('/auth');
}
} else if (result.data != null && result.isConcrete) {
log('data fetched');
User userInfo = User.fromJson(
result.data!['me'] as Map<String, dynamic>,
);
Expand Down
2 changes: 0 additions & 2 deletions lib/services/graphql_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ class GraphQLConfig {
}

GraphQLClient clientToQuery() {
log(httpLink.toString());
log(EnvironmentConfig.httpEndpoint!);
return GraphQLClient(
cache: GraphQLCache(),
// cache: GraphQLCache(partialDataPolicy: PartialDataCachePolicy.accept),
Expand Down

0 comments on commit bd449ea

Please sign in to comment.