| OLD | NEW |
| 1 // Copyright 2012 Google Inc. All Rights Reserved. | 1 // Copyright 2012 Google Inc. All Rights Reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 if (command_line_->HasSwitch("verbose")) { | 79 if (command_line_->HasSwitch("verbose")) { |
| 80 std::string value_str(command_line_->GetSwitchValueASCII("verbose")); | 80 std::string value_str(command_line_->GetSwitchValueASCII("verbose")); |
| 81 base::TrimWhitespace(value_str, base::TRIM_ALL, &value_str); | 81 base::TrimWhitespace(value_str, base::TRIM_ALL, &value_str); |
| 82 int value = 1; | 82 int value = 1; |
| 83 if (!base::StringToInt(value_str, &value)) | 83 if (!base::StringToInt(value_str, &value)) |
| 84 value = 1; | 84 value = 1; |
| 85 logging::SetMinLogLevel(-::abs(value)); | 85 logging::SetMinLogLevel(-::abs(value)); |
| 86 } | 86 } |
| 87 | 87 |
| 88 if (command_line_->HasSwitch("quiet")) |
| 89 logging::SetMinLogLevel(logging::LOG_ERROR); |
| 90 |
| 88 return true; | 91 return true; |
| 89 } | 92 } |
| 90 | 93 |
| 91 } // namespace application | 94 } // namespace application |
| 92 | 95 |
| 93 #endif // SYZYGY_APPLICATION_APPLICATION_IMPL_H_ | 96 #endif // SYZYGY_APPLICATION_APPLICATION_IMPL_H_ |
| OLD | NEW |