Skip to content

Commit 46925a4

Browse files
committed
commenting this out for now -- in most cases it probably isn't considered an actual error
1 parent 72b4682 commit 46925a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ngx_http_mbtiles_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ ngx_http_mbtiles_handler(ngx_http_request_t *r)
260260

261261
/* execute query */
262262
if (SQLITE_ROW != (sqlite3_ret = sqlite3_step(sqlite_stmt))) {
263-
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "Could not find a tile (ret=%i) for zoom=%d, column=%d, row=%d (TMS row: %d)", sqlite3_ret, tile_zoom, tile_column, tile_row, tms_tile_row);
263+
// ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "Could not find a tile (ret=%i) for zoom=%d, column=%d, row=%d (TMS row: %d)", sqlite3_ret, tile_zoom, tile_column, tile_row, tms_tile_row);
264264
sqlite3_finalize(sqlite_stmt);
265265
sqlite3_close(sqlite_handle);
266266
return NGX_HTTP_NO_CONTENT;

0 commit comments

Comments
 (0)