Skip to content

Commit 696e84b

Browse files
committed
FIX: String format for tracing had invalid references
1 parent c9b3f26 commit 696e84b

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

DG.XrmPluginCore/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.0.4 - 29 April 2025
2+
* Fix: String formatting had invalid indexes
3+
14
### 0.0.3 - 29 April 2025
25
* Clean-up and move concrete classes to XrmPluginCore from XrmPluginCore.Abstractions
36

DG.XrmPluginCore/CustomAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public override void Execute(IServiceProvider serviceProvider)
4444
{
4545
localcontext.Trace(string.Format(
4646
CultureInfo.InvariantCulture,
47-
"No registered event found for Entity: {0}, Message: {2} in {2}",
47+
"No registered event found for Entity: {0}, Message: {1} in {2}",
4848
localcontext.PluginExecutionContext.PrimaryEntityName,
4949
localcontext.PluginExecutionContext.MessageName,
5050
ChildClassName));

DG.XrmPluginCore/Plugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public override void Execute(IServiceProvider serviceProvider)
6060
{
6161
localcontext.Trace(string.Format(
6262
CultureInfo.InvariantCulture,
63-
"No registered event found for Entity: {0}, Message: {2} in {3}",
63+
"No registered event found for Entity: {0}, Message: {1} in {2}",
6464
localcontext.PluginExecutionContext.PrimaryEntityName,
6565
localcontext.PluginExecutionContext.MessageName,
6666
ChildClassName

DG.XrmPluginCore/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.3
1+
0.0.4

0 commit comments

Comments
 (0)