Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
minor update as to how logs work
Browse files Browse the repository at this point in the history
  • Loading branch information
emiyl committed Apr 12, 2020
1 parent d36530b commit 84d0088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sd_dumper.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ static int DumpFile(char *pPath, const char * output_path)
FILE *pReadFile = fopen(pPath, "rb");
if(!pReadFile)
{
//console_printf(1, "Can't open file %s\n", pPath);
console_printf(1, "Symlink file, skipping...\n", pPath);
if (detailed_logs) console_printf(1, "Can't open file %s\n", pPath);
if (!detailed_logs) console_printf(1, "Symlink file, skipping...\n", pPath);
return -2;
}

Expand Down

0 comments on commit 84d0088

Please sign in to comment.