Skip to content

Commit

Permalink
[next/control/spawn] Change log level for SpawnControl
Browse files Browse the repository at this point in the history
Signed-off-by: Shinyzenith <[email protected]>
  • Loading branch information
Shinyzenith committed Aug 1, 2023
1 parent 6fcbe33 commit 0cc9389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/control/spawn.zig
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn spawnCmd(
if (args.len < 2) return Error.NotEnoughArguments;
if (args.len > 2) return Error.TooManyArguments;

log.err("Attempting to run shell command: {s}", .{args[1]});
log.debug("Attempting to run shell command: {s}", .{args[1]});

const cmd = [_:null]?[*:0]const u8{ "/bin/sh", "-c", args[1], null };
const pid = os.fork() catch |err| {
Expand Down

0 comments on commit 0cc9389

Please sign in to comment.