diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 14:34:48 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 14:34:48 +0100 |
commit | 54f2dde4623d29a70125772c08af0d459dd72703 (patch) | |
tree | 80d3edb1733088715534e73f5413b1612223fef3 | |
parent | d41dec3ed13c7a69c76fbaf124ce1e982756913c (diff) | |
download | external_libqmi-54f2dde4623d29a70125772c08af0d459dd72703.zip external_libqmi-54f2dde4623d29a70125772c08af0d459dd72703.tar.gz external_libqmi-54f2dde4623d29a70125772c08af0d459dd72703.tar.bz2 |
qmicli,pdc: print ongoing messages instead of debug
-rw-r--r-- | src/qmicli/qmicli-pdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmicli/qmicli-pdc.c b/src/qmicli/qmicli-pdc.c index 12006b7..a7b137d 100644 --- a/src/qmicli/qmicli-pdc.c +++ b/src/qmicli/qmicli-pdc.c @@ -1019,7 +1019,7 @@ load_config_input_create_chunk (LoadConfigFileData *config_file) file_content = (guint8 *) g_mapped_file_get_contents (config_file->mapped_file); g_array_append_vals (chunk, &file_content[config_file->offset], chunk_size); - g_debug ("Uploaded %" G_GSIZE_FORMAT " of %" G_GSIZE_FORMAT "\n", config_file->offset, full_size); + g_print ("Uploaded %" G_GSIZE_FORMAT " of %" G_GSIZE_FORMAT "\n", config_file->offset, full_size); if (!qmi_message_pdc_load_config_input_set_config_chunk (input, QMI_PDC_CONFIGURATION_TYPE_SOFTWARE, @@ -1127,7 +1127,7 @@ load_config_ready_indication (QmiClientPdc *client, return; } - g_debug ("Loading next chunk (%u bytes remaining)\n", remaining_size); + g_print ("Loading next chunk (%u bytes remaining)\n", remaining_size); input = load_config_input_create_chunk (ctx->load_config_file_data); if (!input) { g_printerr ("error: couldn't create next chunk\n"); |