minor fix for log message while removing tmpdir

This commit is contained in:
Leonid Plyushch
2019-06-09 14:31:09 +03:00
committed by GitHub
parent e6aacc5f08
commit 9f2d887ca0

View File

@@ -243,7 +243,7 @@ public final class TermuxService extends Service implements SessionChangedCallba
try {
TermuxInstaller.deleteFolder(termuxTmpDir.getCanonicalFile());
} catch (Exception e) {
Log.e(EmulatorDebug.LOG_TAG, "Error while removing directory " + termuxTmpDir.getAbsolutePath(), e);
Log.e(EmulatorDebug.LOG_TAG, "Error while removing file at " + termuxTmpDir.getAbsolutePath(), e);
}
termuxTmpDir.mkdirs();