File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,13 +217,6 @@ max_file_size = 2097152 # 2MB
217217format = " 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
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ use std::env;
88#[ tokio:: main]
99async 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 ( ) ;
You can’t perform that action at this time.
0 commit comments