summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #875 from lioncash/fgmGravatar bunnei2018-07-311-0/+1
|\ | | | | service: Add fgm services
| * service: Add fgm servicesGravatar Lioncash2018-07-311-0/+1
| | | | | | | | | | Adds the basic skeleton for the fgm services based off the information provided by Switch Brew.
* | service: Add the pcie serviceGravatar Lioncash2018-07-311-0/+1
|/ | | | | Adds the basic skeleton of the pcie service based off information on Switch Brew.
* Merge pull request #857 from lioncash/wlanGravatar bunnei2018-07-301-0/+1
|\ | | | | service: Add wlan services
| * service: Add wlan servicesGravatar Lioncash2018-07-281-0/+1
| | | | | | | | | | Adds the basic skeleton for the wlan services based off the information on Switch Brew.
* | service: Add btm servicesGravatar Lioncash2018-07-281-0/+1
|/ | | | | Adds the skeleton for the btm services based off the information on Switch Brew.
* Merge pull request #847 from lioncash/ncmGravatar bunnei2018-07-281-0/+1
|\ | | | | service: Add ncm services
| * service: Add ncm servicesGravatar Lioncash2018-07-271-0/+1
| | | | | | | | | | Adds the basic skeleton for the ncm services based off information on Switch Brew.
* | Merge pull request #846 from lioncash/miiGravatar bunnei2018-07-281-0/+1
|\ \ | |/ |/| service: Add mii services
| * service: Add mii servicesGravatar Lioncash2018-07-271-0/+1
| | | | | | | | | | Adds the skeleton for the mii services based off information provided by Switch Brew
* | Merge pull request #845 from lioncash/nfcGravatar bunnei2018-07-271-0/+1
|\ \ | | | | | | service: Add nfc services
| * | service: Add nfc servicesGravatar Lioncash2018-07-271-0/+1
| |/ | | | | | | | | Adds the skeleton of the nfc service based off the information provided on Switch Brew.
* / service/lbl: Implement EnableVrMode, DisableVrMode and GetVrModeGravatar Lioncash2018-07-271-0/+1
|/ | | | | Implements these functions according to the information available on Switch Brew.
* service: Add ldn servicesGravatar Lioncash2018-07-261-0/+1
| | | | Adds ldn services based off information provided by Switch Brew.
* logging/backend: Add missing standard includesGravatar Lioncash2018-07-201-2/+3
| | | | | A few inclusions were being satisfied indirectly. To prevent breakages in the future, include these directly.
* logging/backend: Use std::string_view in RemoveBackend() and GetBackend()Gravatar Lioncash2018-07-201-10/+10
| | | | | | These can just use a view to a string since its only comparing against two names in both cases for matches. This avoids constructing std::string instances where they aren't necessary.
* Logging: Dump all logs in the queue on close in debug modeGravatar James Rowe2018-07-151-1/+2
|
* Logging: Don't lock the queue for the duration of the writeGravatar James Rowe2018-07-141-3/+5
|
* Add configurable logging backendsGravatar James Rowe2018-07-021-8/+149
|
* Service/MM: add service and stub some functionsGravatar mailwl2018-06-051-0/+1
|
* Service/BCAT: add module and servicesGravatar mailwl2018-05-281-0/+1
|
* log: Remove old logging macros and functionsGravatar Lioncash2018-04-271-19/+1
| | | | Now that the old macros are no longer used, we can remove all functionality related to them.
* Added PREPO to logging backend, Removed comments from SaveReportWithUserGravatar David Marcec2018-04-261-0/+1
|
* Update fmtlib to fix msvc warningsGravatar James Rowe2018-04-051-2/+3
| | | | | | Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
* logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADICGravatar Daniel Lim Wee Soong2018-04-031-3/+3
| | | | Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it.
* Merge pull request #262 from daniellimws/fmtlib-macrosGravatar bunnei2018-04-021-14/+22
|\ | | | | Logging: Add fmtlib-based macros
| * Logging: Create logging macros based on fmtlibGravatar Daniel Lim Wee Soong2018-03-221-14/+22
| | | | | | | | | | | | | | | | | | Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used.
* | service: Add NFP module interface.Gravatar bunnei2018-03-291-0/+1
| | | | | | | | | | | | service: Initialize NFP service. Log: Add NFP service as a log subtype.
* | Service/SSL: add ssl serviceGravatar mailwl2018-03-231-0/+1
| |
* | Service/spl: add module and servicesGravatar mailwl2018-03-221-0/+1
| |
* | Service: add fatal:u, fatal:p servicesGravatar mailwl2018-03-201-0/+1
|/
* Merge pull request #206 from mailwl/aoc-listaddoncontentGravatar bunnei2018-02-201-0/+1
|\ | | | | Service/AOC: stub ListAddOnContent function
| * Service/AOC: stub ListAddOnContent functionGravatar mailwl2018-02-201-0/+1
| |
* | logging: Add category for Friend service.Gravatar bunnei2018-02-191-0/+1
|/
* log: Add logging category for NS services.Gravatar bunnei2018-02-141-0/+1
|
* logger: Add Time service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add SET service logging category.Gravatar bunnei2018-02-041-5/+3
|
* logger: Add PCTL service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add LM service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add APM service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add NIFM service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add VI service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add AM service logging category.Gravatar bunnei2018-02-041-0/+1
|
* logger: Add "account" service logging category.Gravatar bunnei2018-02-041-0/+1
|
* audout:u OpenAudioOut and IAudioOut (#138)Gravatar st4rk2018-01-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | * Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * audout:u OpenAudioOut implementation and IAudioOut cmd 1,2,3,4,5 implementation * using an enum for audio_out_state as well as changing its initialize to member initializer list * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * added missing Audio loggin subclass, minor fixes, clang comment breakline * Solving backend logging conflict * minor fix * Fixed duplicated Service NVDRV in backend.cpp, my bad
* logging: add missing NVDRV subclass to macro listGravatar Rozlette2018-01-231-0/+1
|
* Format: Run the new clang format on everythingGravatar James Rowe2018-01-201-1/+1
|
* loggin: Add IPC logging category.Gravatar bunnei2018-01-171-1/+2
|
* logging: Rename category "Core_ARM11" to "Core_ARM".Gravatar bunnei2017-10-231-1/+1
|
* hle: Initial implementation of NX service framework and IPC.Gravatar bunnei2017-10-141-1/+1
|