remove logger

This commit is contained in:
Aleksey Kulikov 2021-11-01 18:54:02 +03:00
parent 85ea6429eb
commit f735a54fb9

View file

@ -40,14 +40,12 @@ String? _resolveLibPath(String name) {
}
// If lib is in Present Working Directory's '.dart_tool/libgit2/[platform]' folder.
final logger = Logger.standard();
libPath = path.join(
Directory.current.path,
libDir,
Platform.operatingSystem,
name,
);
logger.stdout(libPath);
if (_doesFileExist(libPath)) {
return libPath;
}