aboutsummaryrefslogtreecommitdiff
path: root/src/transformations/xyzgridshift.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/xyzgridshift.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/xyzgridshift.cpp')
-rw-r--r--src/transformations/xyzgridshift.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transformations/xyzgridshift.cpp b/src/transformations/xyzgridshift.cpp
index d00d6484..e11a4863 100644
--- a/src/transformations/xyzgridshift.cpp
+++ b/src/transformations/xyzgridshift.cpp
@@ -272,13 +272,13 @@ PJ *TRANSFORMATION(xyzgridshift,0) {
// in RGF93
Q->grid_ref_is_input = false;
} else {
- proj_log_error(P, _("xyzgridshift: unusupported value for grid_ref"));
+ proj_log_error(P, _("unusupported value for grid_ref"));
return destructor(P, PROJ_ERR_INVALID_OP_ILLEGAL_ARG_VALUE);
}
}
if (0==pj_param(P->ctx, P->params, "tgrids").i) {
- proj_log_error(P, _("xyzgridshift: +grids parameter missing."));
+ proj_log_error(P, _("+grids parameter missing."));
return destructor (P, PROJ_ERR_INVALID_OP_MISSING_ARG);
}
@@ -294,7 +294,7 @@ PJ *TRANSFORMATION(xyzgridshift,0) {
Q->grids = pj_generic_grid_init(P, "grids");
/* Was gridlist compiled properly? */
if ( proj_errno(P) ) {
- proj_log_error(P, _("xyzgridshift: 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);
}
}