Adds log prefixer to local builder
This commit is contained in:
parent
ac7fa4905d
commit
ce995b3df7
|
@ -12,7 +12,7 @@ namespace CodexNetDeployer
|
|||
|
||||
public LocalCodexBuilder(ILog log, string? repoPath, string? dockerUsername)
|
||||
{
|
||||
this.log = log;
|
||||
this.log = new LogPrefixer(log, "(LocalCodexBuilder) ");
|
||||
this.repoPath = repoPath;
|
||||
this.dockerUsername = dockerUsername;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue