File tree 2 files changed +0
-9
lines changed
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ class Modprobe {
37
37
void ResetModuleCount () { module_count_ = 0 ; }
38
38
int GetModuleCount () { return module_count_; }
39
39
void EnableBlocklist (bool enable);
40
- void EnableVerbose (bool enable);
41
40
42
41
private:
43
42
std::string MakeCanonical (const std::string& module_path);
Original file line number Diff line number Diff line change @@ -343,14 +343,6 @@ void Modprobe::EnableBlocklist(bool enable) {
343
343
blocklist_enabled = enable;
344
344
}
345
345
346
- void Modprobe::EnableVerbose (bool enable) {
347
- if (enable) {
348
- android::base::SetMinimumLogSeverity (android::base::VERBOSE);
349
- } else {
350
- android::base::SetMinimumLogSeverity (android::base::INFO);
351
- }
352
- }
353
-
354
346
std::vector<std::string> Modprobe::GetDependencies (const std::string& module) {
355
347
auto it = module_deps_.find (module);
356
348
if (it == module_deps_.end ()) {
You can’t perform that action at this time.
0 commit comments