[Fix] moved language to logging

This commit is contained in:
Alex Emmet 2026-04-08 11:36:42 +02:00
commit b37ec732f7
7 changed files with 46 additions and 29 deletions

View file

@ -12,7 +12,8 @@ use ratatui::style::Color;
use ttp_core::{CommunicationValue, DataTypes, DataValue};
use iota_state::{APP_STATE, UNIQUE, UiLogEntry};
use iota_util::langu::language_manager;
mod language_creator;
mod language_manager;
static LOGGER: OnceLock<mpsc::Sender<LogMessage>> = OnceLock::new();
@ -128,22 +129,6 @@ fn fixed_box(content: &str, width: usize) -> String {
}
}
fn colorize(kind: PrintType, is_error: bool) -> Color {
if is_error {
return Color::Red;
}
match kind {
PrintType::Call => Color::Magenta,
PrintType::Client => Color::Green,
PrintType::Iota => Color::Yellow,
PrintType::Omikron => Color::Blue,
PrintType::Omega => Color::Cyan,
PrintType::General => Color::LightCyan,
PrintType::Command => Color::LightGreen,
}
}
pub fn log_internal_translated(
kind: PrintType,
prefix: String,