repo.or.cz
/
gmpc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog
|
commit
| commitdiff |
tree
|
edit
|
fork
raw
|
patch
(parent:
7a6295b
)
Do not spit out warnings if url is gzipped/enflated
author
Qball Cow
<qball@sarine.nl>
Sat, 20 Feb 2010 20:21:16 +0000 (21:21 +0100)
committer
Qball Cow
<qball@sarine.nl>
Sat, 20 Feb 2010 20:21:16 +0000 (21:21 +0100)
src/gmpc_easy_download.c
patch
|
blob
|
blame
|
history
diff --git
a/src/gmpc_easy_download.c
b/src/gmpc_easy_download.c
index
f84c5a6
..
9acec0f
100644
(file)
--- a/
src/gmpc_easy_download.c
+++ b/
src/gmpc_easy_download.c
@@
-305,10
+305,10
@@
static void gmpc_easy_async_headers_update(SoupMessage * msg, gpointer data)
if (encoding) {
if (strcmp(encoding, "gzip") == 0) {
d->is_gzip = 1;
- g_log(LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Url is gzipped");
+ g_log(LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Url is gzipped");
} else if (strcmp(encoding, "deflate") == 0) {
d->is_deflate = 1;
- g_log(LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Url is enflated");
+ g_log(LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Url is enflated");
}
}
/* If a second set comes in, close that */