Skip to content
Snippets Groups Projects
Commit b1cea0dc authored by Antoine Cezar's avatar Antoine Cezar
Browse files

rhg: Add debug timing

Differential Revision: https://phab.mercurial-scm.org/D8962
parent f17caf8f
No related branches found
No related tags found
No related merge requests found
......@@ -569,4 +569,5 @@
version = "0.1.0"
dependencies = [
"clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"hg-core 0.1.0",
......@@ -572,4 +573,6 @@
"hg-core 0.1.0",
"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
"micro-timer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
......
......@@ -7,4 +7,6 @@
[dependencies]
hg-core = { path = "../hg-core"}
clap = "2.33.1"
log = "0.4.11"
micro-timer = "0.3.1"
env_logger = "0.7.1"
......@@ -5,6 +5,7 @@
use hg::operations::{
DebugData, DebugDataError, DebugDataErrorKind, DebugDataKind,
};
use micro_timer::timed;
pub const HELP_TEXT: &str = "
Dump the contents of a data file revision
......@@ -22,6 +23,7 @@
}
impl<'a> Command for DebugDataCommand<'a> {
#[timed]
fn run(&self, ui: &Ui) -> Result<(), CommandError> {
let mut operation = DebugData::new(self.rev, self.kind);
let data =
......
extern crate log;
use clap::App;
use clap::AppSettings;
use clap::Arg;
......@@ -15,6 +16,7 @@
use error::CommandError;
fn main() {
env_logger::init();
let app = App::new("rhg")
.setting(AppSettings::AllowInvalidUtf8)
.setting(AppSettings::SubcommandRequired)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment