Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -11,7 +11,7 @@ use std::{
|
||||
use chrono::{Local, SecondsFormat};
|
||||
#[cfg(test)]
|
||||
use parking_lot::Mutex;
|
||||
use warp_completer::completer::{CommandExitStatus, CommandOutput};
|
||||
use galaxy_completer::completer::{CommandExitStatus, CommandOutput};
|
||||
|
||||
#[cfg(test)]
|
||||
use std::sync::Arc;
|
||||
@@ -101,7 +101,7 @@ impl PromptChipLogger {
|
||||
|
||||
#[cfg(not(target_family = "wasm"))]
|
||||
fn init_runtime() -> Self {
|
||||
if !warp_core::channel::ChannelState::enable_debug_features() {
|
||||
if !galaxy_core::channel::ChannelState::enable_debug_features() {
|
||||
return Self::Disabled;
|
||||
}
|
||||
|
||||
@@ -133,8 +133,8 @@ impl PromptChipLogger {
|
||||
|
||||
#[cfg(not(target_family = "wasm"))]
|
||||
pub(crate) fn log_file_path() -> anyhow::Result<PathBuf> {
|
||||
let log_directory = warp_logging::log_directory()?;
|
||||
let channel_logfile_name = warp_core::channel::ChannelState::logfile_name();
|
||||
let log_directory = galaxy_logging::log_directory()?;
|
||||
let channel_logfile_name = galaxy_core::channel::ChannelState::logfile_name();
|
||||
Ok(log_directory.join(prompt_chip_log_filename(&channel_logfile_name)))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user