| 2829 | } |
| 2830 | |
| 2831 | bool Loggers::unregisterLogger(const std::string& identity) { |
| 2832 | base::threading::ScopedLock scopedLock(ELPP->lock()); |
| 2833 | return ELPP->registeredLoggers()->remove(identity); |
| 2834 | } |
| 2835 | |
| 2836 | bool Loggers::hasLogger(const std::string& identity) { |
| 2837 | base::threading::ScopedLock scopedLock(ELPP->lock()); |
nothing calls this directly
no test coverage detected