Skip to content

Commit

Permalink
Fix stderr logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pfoerster committed Dec 29, 2019
1 parent f3b57a1 commit 0345219
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ async fn main() -> Result<(), Box<dyn Error>> {
stderrlog::new()
.module(module_path!())
.module("jsonrpc")
.module("texlab-citeproc")
.module("texlab-completion")
.module("texlab-distro")
.module("texlab-hover")
.module("texlab-protocol")
.module("texlab-symbol")
.module("texlab-syntax")
.module("texlab-workspace")
.module("texlab_citeproc")
.module("texlab_completion")
.module("texlab_distro")
.module("texlab_hover")
.module("texlab_protocol")
.module("texlab_symbol")
.module("texlab_syntax")
.module("texlab_workspace")
.verbosity(matches.occurrences_of("verbosity") as usize)
.quiet(matches.is_present("quiet"))
.timestamp(Timestamp::Off)
Expand Down

0 comments on commit 0345219

Please sign in to comment.