This commit is contained in:
Mathis Chenuet
2015-01-18 16:50:28 +01:00
committed by Laurent CLOUET
parent da5fbabb91
commit be687718c6
4 changed files with 13 additions and 13 deletions

View File

@@ -151,7 +151,7 @@ public class Mac extends OS {
actual_command = Utils.concatAll(low, command);
}
else {
Log.getInstance(null).error("No low priority binary, will not launch renderer in normal prioity");
Log.getInstance(null).error("No low priority binary, will not launch renderer in normal priority");
}
ProcessBuilder builder = new ProcessBuilder(actual_command);
builder.redirectErrorStream(true);
@@ -177,7 +177,7 @@ public class Mac extends OS {
}
catch (IOException e) {
this.hasNiceBinary = false;
Log.getInstance(null).error("Failed to find low priority binary, will not launch renderer in normal prioity (" + e + ")");
Log.getInstance(null).error("Failed to find low priority binary, will not launch renderer in normal priority (" + e + ")");
}
finally {
if (process != null) {