File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -154,11 +154,11 @@ private bool Acquire()
154
154
// the handler is not installed so that would be the hosting environment
155
155
if ( _signaled )
156
156
{
157
- _logger . LogInformation ( "Cannot acquire (signaled)." ) ;
157
+ _logger . LogInformation ( "Cannot acquire MainDom (signaled)." ) ;
158
158
return false ;
159
159
}
160
160
161
- _logger . LogInformation ( "Acquiring." ) ;
161
+ _logger . LogInformation ( "Acquiring MainDom ." ) ;
162
162
163
163
// Get the lock
164
164
var acquired = false ;
@@ -168,12 +168,12 @@ private bool Acquire()
168
168
}
169
169
catch ( Exception ex )
170
170
{
171
- _logger . LogError ( ex , "Error while acquiring" ) ;
171
+ _logger . LogError ( ex , "Error while acquiring MainDom " ) ;
172
172
}
173
173
174
174
if ( ! acquired )
175
175
{
176
- _logger . LogInformation ( "Cannot acquire (timeout)." ) ;
176
+ _logger . LogInformation ( "Cannot acquire MainDom (timeout)." ) ;
177
177
178
178
// In previous versions we'd let a TimeoutException be thrown
179
179
// and the appdomain would not start. We have the opportunity to allow it to
@@ -209,7 +209,7 @@ private bool Acquire()
209
209
_logger . LogWarning ( ex , ex . Message ) ;
210
210
}
211
211
212
- _logger . LogInformation ( "Acquired." ) ;
212
+ _logger . LogInformation ( "Acquired MainDom ." ) ;
213
213
return true ;
214
214
}
215
215
You can’t perform that action at this time.
0 commit comments