remove logger; comfy do automaticly use envlogger

This commit is contained in:
luckyturtledev 2024-07-05 23:16:53 +02:00
parent e83ec5ce20
commit 566310810c
4 changed files with 4 additions and 121 deletions

View file

@ -2,7 +2,9 @@ use comfy::*;
use crate::State;
pub fn update(_state: &mut State, _engine: &mut EngineContext) {}
pub fn update(_state: &mut State, _engine: &mut EngineContext) {
info!("update");
}
pub fn draw(_state: &State, _engine: &EngineContext) {
draw_circle(vec2(0.0, 0.0), 0.5, RED, 0);

View file

@ -30,6 +30,5 @@ async fn run() {
}
fn main() {
//my_env_logger_style::just_log();
pollster::block_on(run());
}