Skip to content

Commit 232c4a6

Browse files
authored
Change log level from warn to debug for unused tags
1 parent 1e4d72a commit 232c4a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

TOGSim/include/DMA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class DMA {
6262
const std::vector<int>& tag_key = tag_entry.first;
6363
uint32_t value = tag_entry.second;
6464
if (value == 1) {
65-
spdlog::warn("[Tag Table][{}] Unused tag found: (key={}, val={})",
65+
spdlog::debug("[Tag Table][{}] Unused tag found: (key={}, val={})",
6666
subgraph_id, fmt::format("[{}]", fmt::join(tag_key, ", ")), value);
6767
}
6868
}
@@ -134,4 +134,4 @@ class DMA {
134134
std::queue<mem_fetch*> _pending_accesses;
135135
bool _generated_once = false;
136136
};
137-
#endif
137+
#endif

0 commit comments

Comments
 (0)