Adds container name to crash messge.

This commit is contained in:
benbierens 2024-06-03 11:36:48 +02:00
parent 3da36725e3
commit 383102b988
No known key found for this signature in database
GPG Key ID: 877D2C2E09A22F3A
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ namespace CodexPlugin
private void CheckContainerCrashed(HttpClient client)
{
if (hasContainerCrashed) throw new Exception("Container has crashed.");
if (hasContainerCrashed) throw new Exception($"Container {GetName()} has crashed.");
}
public void Log(Stream crashLog)