diff options
| author | 2014-12-05 23:53:49 -0200 | |
|---|---|---|
| committer | 2014-12-13 02:08:02 -0200 | |
| commit | 0600e2d8b5b30bd68c8b19cb1f2051e096e7caa9 (patch) | |
| tree | 40fee084c551bfb497e68181447298f862ea68ca /src/core/hle/service/service.cpp | |
| parent | Implement text path trimming for shorter paths. (diff) | |
| download | yuzu-0600e2d8b5b30bd68c8b19cb1f2051e096e7caa9.tar.gz yuzu-0600e2d8b5b30bd68c8b19cb1f2051e096e7caa9.tar.xz yuzu-0600e2d8b5b30bd68c8b19cb1f2051e096e7caa9.zip | |
Convert old logging calls to new logging macros
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index fed2268a0..e6973572b 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -106,13 +106,13 @@ void Init() { | |||
| 106 | g_manager->AddService(new SOC_U::Interface); | 106 | g_manager->AddService(new SOC_U::Interface); |
| 107 | g_manager->AddService(new SSL_C::Interface); | 107 | g_manager->AddService(new SSL_C::Interface); |
| 108 | 108 | ||
| 109 | NOTICE_LOG(HLE, "initialized OK"); | 109 | LOG_DEBUG(Service, "initialized OK"); |
| 110 | } | 110 | } |
| 111 | 111 | ||
| 112 | /// Shutdown ServiceManager | 112 | /// Shutdown ServiceManager |
| 113 | void Shutdown() { | 113 | void Shutdown() { |
| 114 | delete g_manager; | 114 | delete g_manager; |
| 115 | NOTICE_LOG(HLE, "shutdown OK"); | 115 | LOG_DEBUG(Service, "shutdown OK"); |
| 116 | } | 116 | } |
| 117 | 117 | ||
| 118 | 118 | ||