Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit ebbf70e

Browse files
author
Alex Rønne Petersen
committed
Fix a format string bug in CatchpointAddCommand.
1 parent 65ba7bc commit ebbf70e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/CatchpointCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public override void Process(string args)
6060
{
6161
if (cp.ExceptionName == args)
6262
{
63-
Log.Error("Catchpoint for '{0}' already exists");
63+
Log.Error("Catchpoint for '{0}' already exists", args);
6464
return;
6565
}
6666
}

0 commit comments

Comments
 (0)