Behemoth please

This commit is contained in:
Huntereb 2019-11-29 20:45:45 -05:00
parent 53671a9e42
commit aef3b8f6d0
2 changed files with 4 additions and 4 deletions

View file

@ -56,7 +56,7 @@ namespace tin::install::nsp
}
catch (std::exception& e)
{
LOG_DEBUG("An error occurred:\n%s", e.what());
printf("An error occurred:\n%s", e.what());
}
free(buf);
@ -82,7 +82,7 @@ namespace tin::install::nsp
const PFS0FileEntry* fileEntry = this->GetFileEntryByNcaId(placeholderId);
std::string ncaFileName = this->GetFileEntryName(fileEntry);
LOG_DEBUG("Retrieving %s\n", ncaFileName.c_str());
printf("Retrieving %s\n", ncaFileName.c_str());
size_t ncaSize = fileEntry->fileSize;
tin::data::BufferedPlaceholderWriter bufferedPlaceholderWriter(contentStorage, placeholderId, ncaSize);

4
source/util/usb_util.cpp Normal file → Executable file
View file

@ -71,8 +71,8 @@ namespace tin::util
while (cursize)
{
tmpsize = usbCommsWrite(bufptr, cursize);
LOG_DEBUG("USB Bytes Written: \n");
printBytes((u8*)bufptr, tmpsize, true);
//LOG_DEBUG("USB Bytes Written: \n");
//printBytes((u8*)bufptr, tmpsize, true);
bufptr += tmpsize;
cursize -= tmpsize;
}