Adds log prefixer to local builder

This commit is contained in:
benbierens 2023-09-29 10:43:21 +02:00
parent ac7fa4905d
commit ce995b3df7
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}