Showing
1 changed file
with
3 additions
and
1 deletions
1 | +import '../../../get.dart'; | ||
2 | + | ||
1 | class GetUtils { | 3 | class GetUtils { |
2 | /// Checks if data is null. | 4 | /// Checks if data is null. |
3 | static bool isNull(dynamic s) => s == null; | 5 | static bool isNull(dynamic s) => s == null; |
@@ -486,5 +488,5 @@ class GetUtils { | @@ -486,5 +488,5 @@ class GetUtils { | ||
486 | } | 488 | } |
487 | 489 | ||
488 | static void printFunction(String prefix, dynamic value, String info) => | 490 | static void printFunction(String prefix, dynamic value, String info) => |
489 | - print('$prefix $value $info'.trim()); | 491 | + GetConfig.log('$prefix $value $info'.trim()); |
490 | } | 492 | } |
-
Please register or login to post a comment