diff options
author | Damiano Galassi <[email protected]> | 2017-01-01 11:55:09 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-01 11:55:09 +0100 |
commit | 6e6507c64c72294c6478c7fa06ca1f7dad0d17d7 (patch) | |
tree | 63cb53d3b733276a9a7afc04fce41b9f66769c46 /macosx/HBCore.m | |
parent | 3f1f6175ce804dd46ce4d3913611477731389a9f (diff) |
MacGui: write the job preset name to the activity log.
Diffstat (limited to 'macosx/HBCore.m')
-rw-r--r-- | macosx/HBCore.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/HBCore.m b/macosx/HBCore.m index 5ab183b37..0222abeee 100644 --- a/macosx/HBCore.m +++ b/macosx/HBCore.m @@ -481,6 +481,7 @@ static void hb_error_handler(const char *errmsg) self.state = HBStateWorking; [HBUtilities writeToActivityLog:"%s started encoding %s", self.name.UTF8String, job.destURL.lastPathComponent.UTF8String]; + [HBUtilities writeToActivityLog:"%s with preset %s", self.name.UTF8String, job.presetName]; } - (HBCoreResult)workDone |