Skip to content

Commit 2dcc6a3

Browse files
committed
Address review comments
1 parent f82ce4b commit 2dcc6a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Sentry/Internal/Hub.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void ConfigureScope<TArg>(Action<Scope, TArg> configureScope, TArg arg)
107107
}
108108
catch (Exception e)
109109
{
110-
_options.LogError(e, "Failure to ConfigureScope");
110+
_options.LogError(e, "Failure to ConfigureScope<TArg>");
111111
}
112112
}
113113

@@ -131,7 +131,7 @@ public async Task ConfigureScopeAsync<TArg>(Func<Scope, TArg, Task> configureSco
131131
}
132132
catch (Exception e)
133133
{
134-
_options.LogError(e, "Failure to ConfigureScopeAsync");
134+
_options.LogError(e, "Failure to ConfigureScopeAsync<TArg>");
135135
}
136136
}
137137

0 commit comments

Comments
 (0)