diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-12-15 15:32:40 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-12-15 17:24:55 +0100 |
| commit | df96a13d2c9b70bc18cec1b08eea5b2b068127d7 (patch) | |
| tree | 23b27e2ea8e5bd48cf23e545d89669c982b60f2a /src/transformations/affine.cpp | |
| parent | ab7b02702a25689a2dd81b25fc859424a2ffcec9 (diff) | |
| download | PROJ-df96a13d2c9b70bc18cec1b08eea5b2b068127d7.tar.gz PROJ-df96a13d2c9b70bc18cec1b08eea5b2b068127d7.zip | |
Various operations: remove explicit short name prefixing in log messages now that it is automatically added
Diffstat (limited to 'src/transformations/affine.cpp')
| -rw-r--r-- | src/transformations/affine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transformations/affine.cpp b/src/transformations/affine.cpp index 8b927688..39fbb615 100644 --- a/src/transformations/affine.cpp +++ b/src/transformations/affine.cpp @@ -154,7 +154,7 @@ static void computeReverseParameters(PJ* P) const double det = a * A + b * B + c * C; if( det == 0.0 || Q->forward.tscale == 0.0 ) { if (proj_log_level(P->ctx, PJ_LOG_TELL) >= PJ_LOG_DEBUG) { - proj_log_debug(P, "Affine: matrix non invertible"); + proj_log_debug(P, "matrix non invertible"); } P->inv4d = nullptr; P->inv3d = nullptr; |
