davidhcoe commented on code in PR #2747: URL: https://github.com/apache/arrow-adbc/pull/2747#discussion_r2065169479
########## csharp/src/Drivers/Databricks/CloudFetch/CloudFetchDownloader.cs: ########## @@ -274,14 +290,21 @@ private async Task DownloadFilesAsync(CancellationToken cancellationToken) catch (OperationCanceledException) when (cancellationToken.IsCancellationRequested) { // Expected when cancellation is requested + Trace.TraceInformation("Download process was cancelled"); } catch (Exception ex) { - Debug.WriteLine($"Error in download loop: {ex.Message}"); + Trace.TraceError($"Error in download loop: {ex.Message}"); SetError(ex); } finally { + overallStopwatch.Stop(); + + Trace.TraceInformation( Review Comment: Not currently -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org