From bd165e7d294336cd6f0bcf850b56c99d306e909d Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Mon, 16 Jun 2008 02:01:52 +0200 Subject: [PATCH] Output better debug info for NSTask action --- PBEasyPipe.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBEasyPipe.m b/PBEasyPipe.m index 2a2eff4..b2d994c 100644 --- a/PBEasyPipe.m +++ b/PBEasyPipe.m @@ -23,7 +23,7 @@ task.arguments = args; if (dir) task.currentDirectoryPath = dir; - NSLog(@"Starting cmd %@ in dir %@", cmd, dir); + NSLog(@"Starting `cmd %@ %@` in dir %@", cmd, [args componentsJoinedByString:@" "], dir); NSPipe* pipe = [NSPipe pipe]; task.standardOutput = pipe;