fix: replace pub(crate) with pub

This commit is contained in:
Harsh Shandilya 2023-05-12 10:46:58 +05:30
parent a728a353d6
commit 5b3ec8a1b0
No known key found for this signature in database
5 changed files with 19 additions and 20 deletions

View file

@ -10,7 +10,7 @@ fn configure_tracing(filter: Targets) -> Result<(), SetGlobalDefaultError> {
set_global_default(subscriber)
}
pub(crate) fn init() -> Result<(), SetGlobalDefaultError> {
pub fn init() -> Result<(), SetGlobalDefaultError> {
let tracing_filter = Targets::new().with_target("gitice", Level::TRACE);
configure_tracing(tracing_filter)
}