aicommit 0.1.141

A CLI tool that generates concise and descriptive git commit messages using LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod logging;

pub use logging::{
    LoggingConfig,
    init_logging,
    init_default_logging,
    init_dev_logging,
    init_prod_logging,
    log_error,
    log_info,
    log_warning,
};

// Re-export tracing macros for convenience
pub use tracing::{trace, debug, info, warn, error};