mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
init repl env logger on the start
This commit is contained in:
parent
2768bc3aca
commit
47f52ee1f5
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -500,6 +500,19 @@ dependencies = [
|
|||||||
"termcolor",
|
"termcolor",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "env_logger"
|
||||||
|
version = "0.7.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
|
||||||
|
dependencies = [
|
||||||
|
"atty",
|
||||||
|
"humantime",
|
||||||
|
"log",
|
||||||
|
"regex",
|
||||||
|
"termcolor",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "erased-serde"
|
name = "erased-serde"
|
||||||
version = "0.3.12"
|
version = "0.3.12"
|
||||||
@ -759,6 +772,7 @@ version = "0.1.2"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
"env_logger 0.7.1",
|
||||||
"fluence-app-service",
|
"fluence-app-service",
|
||||||
"itertools",
|
"itertools",
|
||||||
"rustop",
|
"rustop",
|
||||||
@ -1957,7 +1971,7 @@ dependencies = [
|
|||||||
"chrono",
|
"chrono",
|
||||||
"clap",
|
"clap",
|
||||||
"derive_builder",
|
"derive_builder",
|
||||||
"env_logger",
|
"env_logger 0.6.2",
|
||||||
"fuzzy-matcher",
|
"fuzzy-matcher",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"log",
|
"log",
|
||||||
|
@ -19,6 +19,7 @@ clap = "2.33.1"
|
|||||||
serde_json = "1.0.57"
|
serde_json = "1.0.57"
|
||||||
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.0"}
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.0"}
|
||||||
|
|
||||||
|
env_logger = "0.7.1"
|
||||||
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
|
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
|
||||||
rustyline-derive = "0.3.1"
|
rustyline-derive = "0.3.1"
|
||||||
rustop = "1.1.0"
|
rustop = "1.1.0"
|
||||||
|
@ -47,6 +47,8 @@ const HISTORY_FILE_PATH: &str = ".repl_history";
|
|||||||
pub(crate) type Result<T> = std::result::Result<T, anyhow::Error>;
|
pub(crate) type Result<T> = std::result::Result<T, anyhow::Error>;
|
||||||
|
|
||||||
fn main() -> Result<()> {
|
fn main() -> Result<()> {
|
||||||
|
env_logger::init();
|
||||||
|
|
||||||
let (args, _) = rustop::opts! {
|
let (args, _) = rustop::opts! {
|
||||||
synopsis "Fluence Application service REPL";
|
synopsis "Fluence Application service REPL";
|
||||||
param config_file_path: Option<String>, desc: "Path to a service config";
|
param config_file_path: Option<String>, desc: "Path to a service config";
|
||||||
|
Loading…
Reference in New Issue
Block a user