Skip to content

Commit 40bf9ee

Browse files
Alex HolmbergAlex Holmberg
authored andcommitted
fix: removed not yet created pages
1 parent b9a5701 commit 40bf9ee

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,6 @@ max_file_size = 2097152 # 2MB
217217
format = "json" # or "yaml", "toml"
218218
```
219219

220-
## 📚 Documentation
221-
222-
- [**Tutorial**](TUTORIAL.md) - Comprehensive usage guide
223-
- [**Roadmap**](ROADMAP.md) - Development phases and upcoming features
224-
- [**Architecture**](docs/architecture/README.md) - Technical design decisions
225-
- [**API Reference**](docs/api/README.md) - Library usage documentation
226-
227220
## 🧪 Supported Technologies
228221

229222
### Languages & Runtimes

examples/debug_java_vulnerabilities.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ use std::env;
88
#[tokio::main]
99
async fn main() -> Result<(), Box<dyn std::error::Error>> {
1010
// Enable debug logging
11-
env::set_var("RUST_LOG", "debug");
12-
env_logger::init();
11+
env_logger::Builder::from_default_env()
12+
.filter_level(log::LevelFilter::Debug)
13+
.init();
1314

1415
// Get project path from command line args or use current directory
1516
let args: Vec<String> = env::args().collect();

0 commit comments

Comments
 (0)