Add tracing-subscriber to changelog tool

This commit is contained in:
Héctor Ramón Jiménez 2024-09-18 02:22:09 +02:00
parent 1be278e60c
commit 4c9223c1cb
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 3 additions and 0 deletions

View file

@ -16,6 +16,7 @@ tokio.workspace = true
serde = "1"
webbrowser = "1"
tracing-subscriber = "0.3"
[dependencies.reqwest]
version = "0.12"

View file

@ -10,6 +10,8 @@ use iced::widget::{
use iced::{Center, Element, Fill, FillPortion, Font, Task, Theme};
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
iced::application("Changelog Generator", Generator::update, Generator::view)
.theme(Generator::theme)
.run_with(Generator::new)