mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-12 02:41:14 +00:00
Change logging level for empty/absent parameterize_style
to DEBUG
Shown once per thread: ``` ** INFO: 04:05:50.327: Loading parameterization function for ``` Fixed two minor grammar issues: `to` => `too`
This commit is contained in:

committed by
ǝɹʇʇɐʃǝ◖ xıʃǝɟ

parent
98224eadb2
commit
9d9bfc1c84
@ -917,7 +917,7 @@ int main(int argc, char **argv)
|
||||
maps[iconf].max_zoom = atoi(ini_maxzoom);
|
||||
|
||||
if (maps[iconf].max_zoom > MAX_ZOOM) {
|
||||
g_logger(G_LOG_LEVEL_CRITICAL, "Specified max zoom (%i) is to large. Renderd currently only supports up to zoom level %i", maps[iconf].max_zoom, MAX_ZOOM);
|
||||
g_logger(G_LOG_LEVEL_CRITICAL, "Specified max zoom (%i) is too large. Renderd currently only supports up to zoom level %i", maps[iconf].max_zoom, MAX_ZOOM);
|
||||
exit(7);
|
||||
}
|
||||
|
||||
@ -926,7 +926,7 @@ int main(int argc, char **argv)
|
||||
maps[iconf].min_zoom = atoi(ini_minzoom);
|
||||
|
||||
if (maps[iconf].min_zoom < 0) {
|
||||
g_logger(G_LOG_LEVEL_CRITICAL, "Specified min zoom (%i) is to small. Minimum zoom level has to be greater or equal to 0", maps[iconf].min_zoom);
|
||||
g_logger(G_LOG_LEVEL_CRITICAL, "Specified min zoom (%i) is too small. Minimum zoom level has to be greater or equal to 0", maps[iconf].min_zoom);
|
||||
exit(7);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user