Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-02-28 18:24:25 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-02-28 18:24:25 +0400
commit2a5ed5293dd430eefccd0a2e77c91729aff5b851 (patch)
tree862ecb501f161dc96275ffd6d240e61b3bab6755 /extern
parent9bfe99281cc5eb7e4308ccf086995c67ee90123a (diff)
Increase verbosity level for reprojected markers info
This information is useful, but in cases when you, say, working on a bundler it's annoying to scroll all the information up. Now behavior would be: - running `./blender --debug-libmv` will print all the debug messages - running `./blender --debug-libmv --verbose 0` will print only debug messages from solvers, recosntruction and so, but will bypass final reprojection bunch of messages - running `./blender --debug-lib,v --verbose 1` will include final reprojection messages.
Diffstat (limited to 'extern')
-rw-r--r--extern/libmv/libmv/simple_pipeline/pipeline.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/libmv/libmv/simple_pipeline/pipeline.cc b/extern/libmv/libmv/simple_pipeline/pipeline.cc
index efceda5c455..463738e42bb 100644
--- a/extern/libmv/libmv/simple_pipeline/pipeline.cc
+++ b/extern/libmv/libmv/simple_pipeline/pipeline.cc
@@ -300,7 +300,7 @@ double InternalReprojectionError(const Tracks &image_tracks,
ex,
ey,
sqrt(ex*ex + ey*ey));
- LG << line;
+ VLOG(1) << line;
total_error += sqrt(ex*ex + ey*ey);
}