We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce95de commit 921f082Copy full SHA for 921f082
1 file changed
src/sequentialthinking/index.ts
@@ -25,7 +25,7 @@ interface ThoughtData {
25
class SequentialThinkingServer {
26
private thoughtHistory: ThoughtData[] = [];
27
private branches: Record<string, ThoughtData[]> = {};
28
- private disableThoughtLogging: boolean; // <-- ADDED
+ private disableThoughtLogging: boolean;
29
30
constructor() {
31
this.disableThoughtLogging = (process.env.DISABLE_THOUGHT_LOGGING || "").toLowerCase() === "true";
0 commit comments