Browse code

Downgrade messages from warn to debug for this release

David Raynor authored on 2012/06/13 04:36:41
Showing 2 changed files
... ...
@@ -1138,7 +1138,7 @@ int lzx_decompress(struct lzx_stream *lzx, off_t out_bytes) {
1138 1138
         /* this is a file format error, but we need to extract what we can and scan that */
1139 1139
         cli_dbgmsg("lzx_decompress: %d bytes remaining at reset interval\n", lzx->block_remaining);
1140 1140
         if (!warned) {
1141
-          cli_warnmsg("Detected an invalid reset interval during decompression.\n");
1141
+          cli_dbgmsg("Detected an invalid reset interval during decompression.\n");
1142 1142
           warned++;
1143 1143
         }
1144 1144
         if (!lzx->header_read) {
... ...
@@ -185,7 +185,7 @@ cli_untar(const char *dir, unsigned int posix, cli_ctx *ctx)
185 185
 				cli_dbgmsg("cli_untar: Invalid checksum in tar header. Skip to next...\n");
186 186
 				if (last_header_bad == 0) {
187 187
 					last_header_bad++;
188
-					cli_warnmsg("cli_untar: Invalid checksum found inside archive!\n");
188
+					cli_dbgmsg("cli_untar: Invalid checksum found inside archive!\n");
189 189
 				}
190 190
 				continue;
191 191
 			} else {