aboutsummaryrefslogtreecommitdiff
path: root/src/transformations/hgridshift.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-12-15 15:32:40 +0100
committerEven Rouault <even.rouault@spatialys.com>2020-12-15 17:24:55 +0100
commitdf96a13d2c9b70bc18cec1b08eea5b2b068127d7 (patch)
tree23b27e2ea8e5bd48cf23e545d89669c982b60f2a /src/transformations/hgridshift.cpp
parentab7b02702a25689a2dd81b25fc859424a2ffcec9 (diff)
downloadPROJ-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/hgridshift.cpp')
-rw-r--r--src/transformations/hgridshift.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transformations/hgridshift.cpp b/src/transformations/hgridshift.cpp
index 1b2ff9b1..326bbb13 100644
--- a/src/transformations/hgridshift.cpp
+++ b/src/transformations/hgridshift.cpp
@@ -155,7 +155,7 @@ PJ *TRANSFORMATION(hgridshift,0) {
P->right = PJ_IO_UNITS_RADIANS;
if (0==pj_param(P->ctx, P->params, "tgrids").i) {
- proj_log_error(P, _("hgridshift: +grids parameter missing."));
+ proj_log_error(P, _("+grids parameter missing."));
return destructor (P, PROJ_ERR_INVALID_OP_MISSING_ARG);
}
@@ -194,7 +194,7 @@ PJ *TRANSFORMATION(hgridshift,0) {
Q->grids = pj_hgrid_init(P, "grids");
/* Was gridlist compiled properly? */
if ( proj_errno(P) ) {
- proj_log_error(P, _("hgridshift: could not find required grid(s)."));
+ proj_log_error(P, _("could not find required grid(s)."));
return destructor(P, PROJ_ERR_INVALID_OP_FILE_NOT_FOUND_OR_INVALID);
}