@@ -1430,8 +1430,7 @@ output_flex_t::output_flex_t(std::shared_ptr<middle_query_t> const &mid,
14301430
14311431 log_debug (" Tables:" );
14321432 for (auto const &table : *m_tables) {
1433- log_debug (
1434- " - TABLE {}" _format (qualified_name (table.schema (), table.name ())));
1433+ log_debug (" - TABLE {}" , qualified_name (table.schema (), table.name ()));
14351434 log_debug (" - columns:" );
14361435 for (auto const &column : table) {
14371436 log_debug (" - \" {}\" {} ({}) not_null={} create_only={}" ,
@@ -1586,8 +1585,8 @@ idset_t const &output_flex_t::get_marked_way_ids()
15861585 if (m_stage2_way_ids->empty ()) {
15871586 log_info (" Skipping stage 1c (no marked ways)." );
15881587 } else {
1589- log_info (" Entering stage 1c processing of {} ways..." _format (
1590- m_stage2_way_ids->size () ));
1588+ log_info (" Entering stage 1c processing of {} ways..." ,
1589+ m_stage2_way_ids->size ());
15911590 m_stage2_way_ids->sort_unique ();
15921591 }
15931592
@@ -1614,8 +1613,8 @@ void output_flex_t::reprocess_marked()
16141613 }
16151614 }
16161615
1617- log_info (" Creating id indexes took {}" _format (
1618- util::human_readable_duration (timer.stop () )));
1616+ log_info (" Creating id indexes took {}" ,
1617+ util::human_readable_duration (timer.stop ()));
16191618 }
16201619
16211620 lua_gc (lua_state (), LUA_GCCOLLECT, 0 );
@@ -1629,8 +1628,7 @@ void output_flex_t::reprocess_marked()
16291628
16301629 m_stage2_way_ids->sort_unique ();
16311630
1632- log_info (
1633- " There are {} ways to reprocess..." _format (m_stage2_way_ids->size ()));
1631+ log_info (" There are {} ways to reprocess..." , m_stage2_way_ids->size ());
16341632
16351633 for (osmid_t const id : *m_stage2_way_ids) {
16361634 if (!m_way_cache.init (middle (), id)) {
0 commit comments