From 2f89c8da615a648ddb0b6316d2e143d49af8255a Mon Sep 17 00:00:00 2001 From: faithoflifedev Date: Sun, 18 Aug 2024 10:51:07 -0400 Subject: [PATCH] less debug output --- packages/google_vision/CHANGELOG.md | 4 ++++ packages/google_vision/README.md | 2 +- packages/google_vision/lib/meta.dart | 2 +- packages/google_vision/lib/src/google_vision_base.dart | 2 +- packages/google_vision/pubspec.yaml | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/google_vision/CHANGELOG.md b/packages/google_vision/CHANGELOG.md index 866ff50..49900c5 100644 --- a/packages/google_vision/CHANGELOG.md +++ b/packages/google_vision/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.0+1 + +* less debug output + ## 1.3.0 * support for file API diff --git a/packages/google_vision/README.md b/packages/google_vision/README.md index a66e614..9f60ff4 100644 --- a/packages/google_vision/README.md +++ b/packages/google_vision/README.md @@ -49,7 +49,7 @@ To use this package, add the dependency to your `pubspec.yaml` file: ```yaml dependencies: ... - google_vision: ^1.3.0 + google_vision: ^1.3.0+1 ``` ### Obtaining Authentication/Authorization Credentials diff --git a/packages/google_vision/lib/meta.dart b/packages/google_vision/lib/meta.dart index 19f87ac..cd8f83c 100644 --- a/packages/google_vision/lib/meta.dart +++ b/packages/google_vision/lib/meta.dart @@ -6,4 +6,4 @@ library meta; import 'dart:convert' show json; final pubSpec = json.decode( - '{"name":"google_vision","version":"1.3.0","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision","environment":{"sdk":">=3.2.0 <4.0.0"},"description":"Allows you to add Google Visions image labeling, face, logo, and landmark detection, OCR, and detection of explicit content, into cross platform applications.","dependencies":{"args":"^2.5.0","collection":"^1.18.0","crypto_keys_plus":"^0.4.0","dio":"^5.6.0","http":"^1.2.2","image":"^4.1.7","jose_plus":"^0.4.6","json_annotation":"^4.9.0","loggy":"^2.0.3","mime":"^1.0.5","retrofit":"^4.2.0","universal_io":"^2.2.2"},"dev_dependencies":{"build_runner":"^2.4.11","grinder":"^0.9.5","json_serializable":"^6.8.0","lints":"^4.0.0","publish_tools":"^1.0.0+4","retrofit_generator":"^8.2.0"},"executables":{"vision":""},"repository":"https://github.com/faithoflifedev/google_vision"}'); + '{"name":"google_vision","version":"1.3.0+1","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision","environment":{"sdk":">=3.2.0 <4.0.0"},"description":"Allows you to add Google Visions image labeling, face, logo, and landmark detection, OCR, and detection of explicit content, into cross platform applications.","dependencies":{"args":"^2.5.0","collection":"^1.18.0","crypto_keys_plus":"^0.4.0","dio":"^5.6.0","http":"^1.2.2","image":"^4.1.7","jose_plus":"^0.4.6","json_annotation":"^4.9.0","loggy":"^2.0.3","mime":"^1.0.5","retrofit":"^4.2.0","universal_io":"^2.2.2"},"dev_dependencies":{"build_runner":"^2.4.11","grinder":"^0.9.5","json_serializable":"^6.8.0","lints":"^4.0.0","publish_tools":"^1.0.0+4","retrofit_generator":"^8.2.0"},"executables":{"vision":""},"repository":"https://github.com/faithoflifedev/google_vision"}'); diff --git a/packages/google_vision/lib/src/google_vision_base.dart b/packages/google_vision/lib/src/google_vision_base.dart index 55f0eee..ea2d4e1 100644 --- a/packages/google_vision/lib/src/google_vision_base.dart +++ b/packages/google_vision/lib/src/google_vision_base.dart @@ -27,7 +27,7 @@ class GoogleVision with UiLoggy { GoogleVision() { Loggy.initLoggy( logPrinter: const PrettyPrinter(), - logOptions: LogOptions(LogLevel.all), + logOptions: LogOptions(LogLevel.off), ); GoogleVision.dio.interceptors.add(LoggingInterceptors()); diff --git a/packages/google_vision/pubspec.yaml b/packages/google_vision/pubspec.yaml index e0ac822..018833c 100644 --- a/packages/google_vision/pubspec.yaml +++ b/packages/google_vision/pubspec.yaml @@ -1,6 +1,6 @@ name: google_vision description: Allows you to add Google Visions image labeling, face, logo, and landmark detection, OCR, and detection of explicit content, into cross platform applications. -version: 1.3.0 +version: 1.3.0+1 repository: https://github.com/faithoflifedev/google_vision homepage: https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision