Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] #3244 - Removing debug log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
bleege committed Dec 18, 2015
1 parent f7d1a40 commit 925687a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/mbgl/map/transform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,7 @@ void Transform::flyTo(const CameraOptions &options) {
}

double new_scale = std::pow(2.0, zoom);
mbgl::Log::Info(mbgl::Event::JNI, "flyTo - new_scale: %f", new_scale);


const double scaled_tile_size = new_scale * util::tileSize;
state.Bc = scaled_tile_size / 360;
state.Cc = scaled_tile_size / util::M2PI;
Expand All @@ -362,8 +361,6 @@ void Transform::flyTo(const CameraOptions &options) {
state.scaling = true;
state.rotating = true;

mbgl::Log::Info(mbgl::Event::JNI, "flyTo - startZ: %f", startZ);

double rho = flyOptions.curve ? *flyOptions.curve : 1.42;
double w0 = std::max(state.width, state.height);
double w1 = w0 / new_scale;
Expand Down

0 comments on commit 925687a

Please sign in to comment.