We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed01b6 commit c04485eCopy full SHA for c04485e
cortex/cli.py
@@ -2,15 +2,20 @@
2
import os
3
import argparse
4
import time
5
+import logging
6
from typing import List, Optional
7
import subprocess
8
from datetime import datetime
9
10
+# Suppress noisy log messages in normal operation
11
+logging.getLogger("httpx").setLevel(logging.WARNING)
12
+logging.getLogger("cortex.installation_history").setLevel(logging.ERROR)
13
+
14
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
15
16
from LLM.interpreter import CommandInterpreter
17
from cortex.coordinator import InstallationCoordinator, StepStatus
-from installation_history import (
18
+from cortex.installation_history import (
19
InstallationHistory,
20
InstallationType,
21
InstallationStatus
0 commit comments