diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-06-20 15:34:44 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-06-20 16:06:09 +0200 |
commit | c38ffe806c75629632a3d1af8c1c6a55ccb57dff (patch) | |
tree | 463bda282332c3e6bef42eec312dd459419e25a4 /webmap-import | |
parent | 279424f34102fb87c86f70cee1425dc7cdab3814 (diff) |
webmap-import: Improve debug messages.
Diffstat (limited to 'webmap-import')
-rwxr-xr-x | webmap-import | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webmap-import b/webmap-import index 901360d..ffc24a2 100755 --- a/webmap-import +++ b/webmap-import @@ -666,12 +666,12 @@ def createOutputLayer(ds, layername, srs=None, options=None): if 'AlternativeName' in fld: v = fld['AlternativeName'] - logging.debug('Set AlternativeName=%s on output field "%s"', str(v), fldName) + logging.debug('Set AlternativeName="%s" on output field "%s"', str(v), fldName) defn.SetAlternativeName(v) if 'Comment' in fld: v = fld['Comment'] - logging.debug('Set Comment=%s on output field "%s"', str(v), fldName) + logging.debug('Set Comment="%s" on output field "%s"', str(v), fldName) defn.SetComment(v) if 'Type' in fld: |