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/xyzgridshift.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/xyzgridshift.cpp')
| -rw-r--r-- | src/transformations/xyzgridshift.cpp | 6 |
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); } } |
