Skip to content

Commit 3fa7fca

Browse files
Decreased severity and removed redundant logs
1 parent 4373195 commit 3fa7fca

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Firmware/drivers/winbondflash/inc/windbondflash/winbond_flash_templated.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,13 @@ template <typename TSpiBusInstance> class WinbondFlashDriver
186186
{
187187
ChipSelectGuard csGuard{this};
188188

189-
LOG_DEBUG("WinbondFlashDriver checkIsBusy");
189+
LOG_TRACE("WinbondFlashDriver checkIsBusy");
190190

191191
auto busyStatusRegister = co_await prepareXferTransaction(
192192
std::forward_as_tuple(WindbondCommandSet::ReadStatusRegister1),
193193
WindbondCommandSet::DummyByte);
194194

195-
LOG_DEBUG("WinbondFlashDriver checkIsBusy completion");
195+
LOG_TRACE("WinbondFlashDriver checkIsBusy completion");
196196
co_return busyStatusRegister[0] & WindbondCommandSet::Masks::EraseWriteInProgress;
197197
}
198198

@@ -218,7 +218,7 @@ template <typename TSpiBusInstance> class WinbondFlashDriver
218218
}
219219
while (co_await checkIsBusy())
220220
{
221-
LOG_DEBUG("WinbondFlashDriver wait for the eraseSector completion");
221+
LOG_TRACE("WinbondFlashDriver wait for the eraseSector completion");
222222
co_yield CoroUtils::CoroQueueMainLoop::GetInstance();
223223
}
224224
}

Firmware/filesystem/filesystem/block_device_wrapper/spi_block_device.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ class SpiFlashBlockDevice
7070
std::uint8_t* pReadBuffer{_pBlockOut};
7171
std::uint32_t blockAddress{_address};
7272

73-
LOG_DEBUG("FS::SpiBlockDrevice read call");
74-
7573
while (blockSize > 0)
7674
{
7775
auto resultBuffer =

0 commit comments

Comments
 (0)