File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ public override void Configure(SentryCliOptions cliOptions)
77 {
88 Debug . Log ( "Calling into the 'Configure' callback for CLI options." ) ;
99
10- if ( cliOptions . Auth is not null )
10+ if ( ! string . IsNullOrEmpty ( cliOptions . Auth ) )
1111 {
12- Debug . Log ( "The 'AUTH TOKEN' is already set." ) ;
12+ Debug . Log ( "The 'AUTH TOKEN' is already set and taken from local cli options ." ) ;
1313 return ;
1414 }
1515
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ public override void Configure(SentryUnityOptions options)
77 {
88 Debug . Log ( "Calling into the 'Configure' callback." ) ;
99
10- if ( options . Dsn is not null )
10+ if ( ! string . IsNullOrEmpty ( options . Dsn ) )
1111 {
12- Debug . Log ( "The 'DSN' is already set." ) ;
12+ Debug . Log ( "The 'DSN' is already set and taken from local options ." ) ;
1313 return ;
1414 }
1515
You can’t perform that action at this time.
0 commit comments