I don't where to put little patches, as it's only for linux, I did not try with Windows I put it here.
On my computer, Debian Testing, with pms svn 653, the debug file can't be created in the tmp dir because it tries to create the file /tmpdebug.log
here is my patch:
- Code: Select all
--- net/pms/logging/DebugLogPathDefiner.java (revision 653)
+++ net/pms/logging/DebugLogPathDefiner.java (working copy)
@@ -59,7 +59,7 @@
}
// Return path to temp folder, which should be writeable
- return System.getProperty("java.io.tmpdir");
+ return System.getProperty("java.io.tmpdir")+'/';
}
}
