「Unity/sentry/ユーザ名設定」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「<pre> SentrySdk.ConfigureScope(scope => { scope.User = new Sentry.User { Username = "name1", Id = 1234, Other = { { "a...」) |
|||
| 行1: | 行1: | ||
<pre> | <pre> | ||
| + | using Sentry; | ||
SentrySdk.ConfigureScope(scope => | SentrySdk.ConfigureScope(scope => | ||
{ | { | ||
2023年8月11日 (金) 20:20時点における版
using Sentry;
SentrySdk.ConfigureScope(scope =>
{
scope.User = new Sentry.User
{
Username = "name1",
Id = 1234,
Other =
{
{ "age", 20 }
}
};
});
