aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-04-09 17:25:01 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-04-12 14:59:31 -0500
commit4021c901e0c76c7daeb3f65e4c12ff6d2cab053c (patch)
treec7513cf1ae152bd03de26c32ef70745311f4aec1 /mpm/lib
parentaf894ef3ccb5cdbc83f60b04249ce33847f8ad86 (diff)
downloaduhd-4021c901e0c76c7daeb3f65e4c12ff6d2cab053c.tar.gz
uhd-4021c901e0c76c7daeb3f65e4c12ff6d2cab053c.tar.bz2
uhd-4021c901e0c76c7daeb3f65e4c12ff6d2cab053c.zip
mpm: Remove logging for mmap_regs_iface
These are very noisy, and the signal-to-noise ratio suffers when these are enabled.
Diffstat (limited to 'mpm/lib')
-rw-r--r--mpm/lib/types/mmap_regs_iface.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/mpm/lib/types/mmap_regs_iface.cpp b/mpm/lib/types/mmap_regs_iface.cpp
index 18fa2abfa..591c2963b 100644
--- a/mpm/lib/types/mmap_regs_iface.cpp
+++ b/mpm/lib/types/mmap_regs_iface.cpp
@@ -59,7 +59,6 @@ void mmap_regs_iface::open()
throw mpm::runtime_error("Failed to mmap!");
}
}
- log(mpm::types::log_level_t::TRACE, _path, "Opened mmap_regs_iface");
}
void mmap_regs_iface::close()
@@ -78,7 +77,6 @@ void mmap_regs_iface::close()
}
_fd = -1;
}
- log(mpm::types::log_level_t::TRACE, _path, "Closed mmap_regs_iface");
}
void mmap_regs_iface::poke32(const uint32_t addr, const uint32_t data)