Skip to content

Commit b1aed35

Browse files
committed
Fix confusing log message
The message "Done postprocessing on table '{}' in {}" was logged twice when `--drop` is used. This changes one of the log messages to the more specific "Table '{}' dropped in {}".
1 parent f8beea1 commit b1aed35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/middle-pgsql.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void middle_pgsql_t::table_desc::drop_table(
8888
auto const qual_name = qualified_name(schema(), name());
8989
db_connection.exec("DROP TABLE IF EXISTS {}"_format(qual_name));
9090

91-
log_info("Done postprocessing on table '{}' in {}", name(),
91+
log_info("Table '{}' dropped in {}", name(),
9292
util::human_readable_duration(timer.stop()));
9393
}
9494

0 commit comments

Comments
 (0)