progress_cb is used to give progress updates on pushes and pulls. There is
no reason for it to pollute the logs by logging its updates as warnings.
Changed these to plain print statements.
Other fixes:
Removed unneeded memcpy in progress_cb: This buffer is already copied by
godot::String::utf8, so no need to copy it a second time.
Fixed unmatched parenthesis in push_transfer_progress_cb: This just looked
weird.
progress_cb
is used to give progress updates on pushes and pulls. There is no reason for it to pollute the logs by logging its updates as warnings. Changed these to plain print statements.Other fixes:
memcpy
inprogress_cb
: This buffer is already copied bygodot::String::utf8
, so no need to copy it a second time.push_transfer_progress_cb
: This just looked weird.