File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
## 1.9.0 [ unreleased]
2
2
3
3
### API
4
-
5
4
1 . [ #94 ] ( https://github.com/influxdata/influxdb-client-csharppull/94 ) : Update swagger to latest version
6
5
7
6
### Bug Fixes
8
7
1 . [ #100 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/100 ) : Thread-safety disposing of clients
8
+ 1 . [ #101 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/101/ ) : Use Trace output when disposing WriteApi
9
9
10
10
## 1.8.0 [ 2020-05-15]
11
11
Original file line number Diff line number Diff line change @@ -194,12 +194,12 @@ protected internal WriteApi(
194
194
exception =>
195
195
{
196
196
_disposed = true ;
197
- Console . WriteLine ( $ "The unhandled exception occurs: { exception } ") ;
197
+ Trace . WriteLine ( $ "The unhandled exception occurs: { exception } ") ;
198
198
} ,
199
199
( ) =>
200
200
{
201
201
_disposed = true ;
202
- Console . WriteLine ( "The WriteApi was disposed." ) ;
202
+ Trace . WriteLine ( "The WriteApi was disposed." ) ;
203
203
} ) ;
204
204
}
205
205
@@ -649,4 +649,4 @@ private bool Equals(BatchWriteOptions other)
649
649
Precision == other . Precision ;
650
650
}
651
651
}
652
- }
652
+ }
You can’t perform that action at this time.
0 commit comments