Skip to content

Commit

Permalink
Temporarily exclude non-working models and files
Browse files Browse the repository at this point in the history
  • Loading branch information
mhovd committed Nov 13, 2023
1 parent c117ba7 commit 39ebd6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Rust library with the building blocks needed to create new Non-Pa
license = "GPL-3.0"
documentation = "https://lapkb.github.io/NPcore/npcore/"
repository = "https://github.com/LAPKB/NPcore"
exclude = [".github/*", ".vscode/*"]
exclude = [".github/*", ".vscode/*", "debug.rs", "examples/faer_qr.rs", "examples/drusano/*", "examples/two_eq_lag/*", "examples/vori/*"]

[dependencies]
dashmap = "5.5.3"
Expand Down
2 changes: 1 addition & 1 deletion src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn setup_log(settings: &Data, ui_tx: UnboundedSender<Comm>) {
.unwrap_or("info")
.to_lowercase();

let env_filter = EnvFilter::new(log_level);
let env_filter = EnvFilter::new(&log_level);

// Define a registry with that level as an environment filter
let subscriber = Registry::default().with(env_filter);
Expand Down

0 comments on commit 39ebd6d

Please sign in to comment.