Skip to content

Commit

Permalink
add debug trace when symlinking an asset (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre authored Aug 7, 2024
1 parent 269ad5d commit c2e9ebc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/org/koreader/launcher/Assets.kt
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ class Assets {
if (array.size == 2) {
val link = "$filesDir/${array[0]}"
val file = "$nativeLibsDir/${array[1]}"
Log.v(tag, "Symlink $file to $link")
File(file).symlink(link)
}
} catch (e: Exception) {
Expand Down

0 comments on commit c2e9ebc

Please sign in to comment.