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 <[email protected]>
This commit is contained in:
@@ -675,7 +675,7 @@ namespace URLNotesGrabberCORE
|
|||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine(withoutNotesOnly);
|
Console.WriteLine(withoutNotesOnly);
|
||||||
Console.WriteLine(sql);
|
Console.WriteLine(System.Text.RegularExpressions.Regex.Replace(sql, @"\s+", " ").Trim());
|
||||||
Console.Write(">" ); //Console.ReadKey();
|
Console.Write(">" ); //Console.ReadKey();
|
||||||
//Thread.Sleep(250);
|
//Thread.Sleep(250);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user