From e7b89da30e5ed6a3c8582b12599bd4043ac45c88 Mon Sep 17 00:00:00 2001 From: Maurice McCabe Date: Sun, 17 Mar 2019 02:20:14 -0700 Subject: [PATCH] Removed debug prints --- lib/sylph.dart | 2 +- lib/utils.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sylph.dart b/lib/sylph.dart index 0d31ddcd..6f4d73c3 100644 --- a/lib/sylph.dart +++ b/lib/sylph.dart @@ -225,7 +225,7 @@ Future bundleFlutterTests(Map config) async { // final testSuite = config['test_suites'][0]; // final appPath = testSuite['app_path']; final appPath = Directory.current.path; - print('appPath=$appPath'); +// print('appPath=$appPath'); final appName = p.basename(appPath); final appDir = p.dirname(appPath); diff --git a/lib/utils.dart b/lib/utils.dart index f6f46fa5..322bebc3 100644 --- a/lib/utils.dart +++ b/lib/utils.dart @@ -64,7 +64,7 @@ Future unpackResources(String tmpDir) async { // unpack scripts final appPath = Directory.current.path; - print('appPath=$appPath'); +// print('appPath=$appPath'); final appName = p.basename(appPath); await unpackScripts('$tmpDir/$appName'); }