| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "debug.h" | 5 #include "debug.h" |
| 6 | 6 |
| 7 #include <stdlib.h> | 7 #include <stdlib.h> |
| 8 #include <iostream> | 8 #include <iostream> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } | 46 } |
| 47 | 47 |
| 48 // Verbosity. Not thread-safe. | 48 // Verbosity. Not thread-safe. |
| 49 int Logger::max_level_ = -1; | 49 int Logger::max_level_ = -1; |
| 50 | 50 |
| 51 // Logging streams. Not thread-safe. | 51 // Logging streams. Not thread-safe. |
| 52 std::ostream* Logger::info_stream_ = &std::cout; | 52 std::ostream* Logger::info_stream_ = &std::cout; |
| 53 std::ostream* Logger::error_stream_ = &std::cerr; | 53 std::ostream* Logger::error_stream_ = &std::cerr; |
| 54 | 54 |
| 55 } // namespace relocation_packer | 55 } // namespace relocation_packer |
| OLD | NEW |