mirror of https://github.com/ArduPilot/ardupilot
AP_Generator: mark logger Write() calls as streaming where appropriate
This commit is contained in:
parent
de1e44c77e
commit
17b91903ed
|
@ -190,7 +190,7 @@ void AP_Generator_IE_2400::log_write()
|
|||
return;
|
||||
}
|
||||
|
||||
AP::logger().Write(
|
||||
AP::logger().WriteStreaming(
|
||||
"IE24",
|
||||
"TimeUS,FUEL,SPMPWR,POUT,ERR",
|
||||
"s%WW-",
|
||||
|
|
|
@ -298,7 +298,7 @@ void AP_Generator_RichenPower::Log_Write()
|
|||
}
|
||||
last_logged_reading_ms = last_reading_ms;
|
||||
|
||||
AP::logger().Write(
|
||||
AP::logger().WriteStreaming(
|
||||
"GEN",
|
||||
"TimeUS,runTime,maintTime,errors,rpm,ovolt,ocurr,mode",
|
||||
"s-------",
|
||||
|
|
Loading…
Reference in New Issue