diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:41:36 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:41 -0700 |
| commit | 830a4d97d470dad6ca4a27ef1eecce17057fa432 (patch) | |
| tree | 18da4d5de02fc71dc228d70b6877e69ff9280d39 /toolsrc/src/commands_build.cpp | |
| parent | c86dbc960e417659dd652a7448096cd71d95266e (diff) | |
| download | vcpkg-830a4d97d470dad6ca4a27ef1eecce17057fa432.tar.gz vcpkg-830a4d97d470dad6ca4a27ef1eecce17057fa432.zip | |
Rename Metrics:: function to all_lower
Diffstat (limited to 'toolsrc/src/commands_build.cpp')
| -rw-r--r-- | toolsrc/src/commands_build.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_build.cpp b/toolsrc/src/commands_build.cpp index 7b4e4cf37..c45693015 100644 --- a/toolsrc/src/commands_build.cpp +++ b/toolsrc/src/commands_build.cpp @@ -68,12 +68,12 @@ namespace vcpkg::Commands::Build int return_code = System::cmd_execute_clean(command); auto buildtimeus = timer.microseconds(); - Metrics::TrackMetric("buildtimeus-" + spec.toString(), buildtimeus); + Metrics::track_metric("buildtimeus-" + spec.toString(), buildtimeus); if (return_code != 0) { - Metrics::TrackProperty("error", "build failed"); - Metrics::TrackProperty("build_error", spec.toString()); + Metrics::track_property("error", "build failed"); + Metrics::track_property("build_error", spec.toString()); return BuildResult::BUILD_FAILED; } |
