remove one space from string sent with the logger filename

now the full file name is sent, and not missing the last seconds digit
This commit is contained in:
bazooka joe
2020-03-06 09:32:51 -08:00
committed by Lorenz Meier
parent b186614857
commit 887d846f7a
+1 -1
View File
@@ -1232,7 +1232,7 @@ void Logger::start_log_file(LogType type)
if (type == LogType::Full) {
/* print logging path, important to find log file later */
mavlink_log_info(&_mavlink_log_pub, "[logger] file: %s", file_name);
mavlink_log_info(&_mavlink_log_pub, "[logger] file:%s", file_name);
}
_writer.start_log_file(type, file_name);