From 2b86ce9119fbad0611e61b432c0f0457d8253532 Mon Sep 17 00:00:00 2001 From: jim Date: Mon, 11 May 2026 09:09:24 -0500 Subject: [PATCH] collapse GetPosts SQL log to a single line Per-iteration call in CollectNotes was dumping ~30 lines of newline-padded SQL to the console. Replace with a whitespace-collapsed single-line print. Co-Authored-By: Claude Opus 4.7 --- URLNotesGrabberCORE/DataAccess.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/URLNotesGrabberCORE/DataAccess.cs b/URLNotesGrabberCORE/DataAccess.cs index 7ab83a3..7131439 100644 --- a/URLNotesGrabberCORE/DataAccess.cs +++ b/URLNotesGrabberCORE/DataAccess.cs @@ -675,7 +675,7 @@ namespace URLNotesGrabberCORE } Console.WriteLine(withoutNotesOnly); - Console.WriteLine(sql); + Console.WriteLine(System.Text.RegularExpressions.Regex.Replace(sql, @"\s+", " ").Trim()); Console.Write(">" ); //Console.ReadKey(); //Thread.Sleep(250);