summaryrefslogtreecommitdiff
path: root/src/common/logging (follow)
Commit message (Collapse)AuthorAgeFilesLines
* logging/text_formatter: Use empty braces for initializing ↵Gravatar Lioncash2018-08-211-1/+1
| | | | | | | | | CONSOLE_SCREEN_BUFFER_INFO instance The previous form of initializing done here is a C-ism, an empty set of braces is sufficient for initializing (and doesn't potentially cause missing brace warnings, given the first member of the struct is a COORD struct).
* logging/backend: Use const reference to refer to log filterGravatar Lioncash2018-08-131-2/+3
| | | | | | The filter is returned via const reference, so this was making a pointless copy of the entire filter every time a message was being pushed into the logger instance.
* common/logging: Add missing service log categoriesGravatar Lioncash2018-08-082-0/+16
| | | | These weren't added when the services were introduced.
* service: Add usb servicesGravatar Lioncash2018-08-072-0/+2
| | | | Adds basic skeleton for the usb services based off the information provided by Switch Brew.
* service: Add arp servicesGravatar Lioncash2018-08-042-0/+2
| | | | | Adds the basic skeleton of the arp services based off the information provided by Switch Brew.
* Merge pull request #849 from DarkLordZach/xciGravatar bunnei2018-08-042-0/+2
|\ | | | | XCI and Encrypted NCA Support
| * Remove files that are not usedGravatar Zach Hilman2018-08-012-0/+2
| |
* | Merge pull request #898 from lioncash/migGravatar bunnei2018-08-032-0/+2
|\ \ | | | | | | service: Add migration services
| * | service: Add migration servicesGravatar Lioncash2018-08-022-0/+2
| | | | | | | | | | | | | | | Adds the basic skeleton for the mig:usr service based off information provided by Switch Brew.
* | | logging/log: Remove incorrect description in PCV doc commentGravatar Lioncash2018-08-011-1/+1
| | | | | | | | | | | | PCV isn't the parental control service.
* | | service: Add psc servicesGravatar Lioncash2018-08-012-0/+2
|/ / | | | | | | | | Adds the basic skeleton for the psc services based off the information provided by Switch Brew.
* | Merge pull request #888 from lioncash/capsGravatar bunnei2018-08-012-0/+2
|\ \ | | | | | | service: Add capture services
| * | service: Add capture servicesGravatar Lioncash2018-08-012-0/+2
| |/ | | | | | | | | Adds the basic skeleton for the capture services based off information provided by Switch Brew.
* / service: Add bpc and pcv servicesGravatar Lioncash2018-08-012-0/+4
|/ | | | | Adds the basic skeleton for the remaining pcv-related services based off information on Switch Brew.
* Merge pull request #875 from lioncash/fgmGravatar bunnei2018-07-312-0/+2
|\ | | | | service: Add fgm services
| * service: Add fgm servicesGravatar Lioncash2018-07-312-0/+2
| | | | | | | | | | Adds the basic skeleton for the fgm services based off the information provided by Switch Brew.
* | service: Add the pcie serviceGravatar Lioncash2018-07-312-0/+2
|/ | | | | Adds the basic skeleton of the pcie service based off information on Switch Brew.
* Port #3758 from Citra (#852): Add missing std::string import in text_formatterGravatar Tobias2018-07-301-0/+1
|
* Merge pull request #857 from lioncash/wlanGravatar bunnei2018-07-302-0/+2
|\ | | | | service: Add wlan services
| * service: Add wlan servicesGravatar Lioncash2018-07-282-0/+2
| | | | | | | | | | Adds the basic skeleton for the wlan services based off the information on Switch Brew.
* | service: Add btm servicesGravatar Lioncash2018-07-282-0/+2
|/ | | | | Adds the skeleton for the btm services based off the information on Switch Brew.
* Merge pull request #847 from lioncash/ncmGravatar bunnei2018-07-282-0/+2
|\ | | | | service: Add ncm services
| * service: Add ncm servicesGravatar Lioncash2018-07-272-0/+2
| | | | | | | | | | Adds the basic skeleton for the ncm services based off information on Switch Brew.
* | Merge pull request #846 from lioncash/miiGravatar bunnei2018-07-282-0/+2
|\ \ | |/ |/| service: Add mii services
| * service: Add mii servicesGravatar Lioncash2018-07-272-0/+2
| | | | | | | | | | Adds the skeleton for the mii services based off information provided by Switch Brew
* | Merge pull request #845 from lioncash/nfcGravatar bunnei2018-07-272-0/+2
|\ \ | | | | | | service: Add nfc services
| * | service: Add nfc servicesGravatar Lioncash2018-07-272-0/+2
| |/ | | | | | | | | Adds the skeleton of the nfc service based off the information provided on Switch Brew.
* / service/lbl: Implement EnableVrMode, DisableVrMode and GetVrModeGravatar Lioncash2018-07-272-0/+2
|/ | | | | Implements these functions according to the information available on Switch Brew.
* service: Add ldn servicesGravatar Lioncash2018-07-262-0/+2
| | | | Adds ldn services based off information provided by Switch Brew.
* logging/filter: Use std::string_view in ParseFilterString()Gravatar Lioncash2018-07-202-41/+40
| | | | | | | | Allows avoiding constructing std::string instances, since this only reads an arbitrary sequence of characters. We can also make ParseFilterRule() internal, since it doesn't depend on any private instance state of Filter
* logging/backend: Add missing standard includesGravatar Lioncash2018-07-202-4/+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-202-12/+13
| | | | | | 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.
* externals: update fmt to version 5.1.0Gravatar Lioncash2018-07-181-1/+1
| | | | Previously, we were on 4.1.0, which was a major version behind.
* Logging: Dump all logs in the queue on close in debug modeGravatar James Rowe2018-07-153-1/+12
|
* Logging: Don't lock the queue for the duration of the writeGravatar James Rowe2018-07-141-3/+5
|
* Fix build and address review feedbackGravatar bunnei2018-07-021-4/+4
|
* Add configurable logging backendsGravatar James Rowe2018-07-022-11/+233
|
* Update clang formatGravatar James Rowe2018-07-021-1/+1
|
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-022-10/+10
|
* Service/MM: add service and stub some functionsGravatar mailwl2018-06-052-0/+2
|
* Service/BCAT: add module and servicesGravatar mailwl2018-05-282-0/+2
|
* log: Remove old logging macros and functionsGravatar Lioncash2018-04-272-54/+1
| | | | Now that the old macros are no longer used, we can remove all functionality related to them.
* Switched to NGLOG_WARNINGGravatar David Marcec2018-04-261-1/+1
|
* Added PREPO to logging backend, Removed comments from SaveReportWithUserGravatar David Marcec2018-04-261-0/+1
|
* GetIUserInterface->CreateUserInterface, Added todos and stub logs. ↵Gravatar David Marcec2018-04-221-0/+1
| | | | Playreport->PlayReport.
* Update fmtlib to fix msvc warningsGravatar James Rowe2018-04-052-5/+8
| | | | | | 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-032-5/+11
| | | | 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-027-66/+74
|\ | | | | Logging: Add fmtlib-based macros
| * Remove dependency chronoGravatar Daniel Lim Wee Soong2018-03-221-1/+0
| | | | | | | | | | | | Earlier chrono was included but after some code changed it was no longer needed Forgot to remove it so I'm removing it now
| * Logging: Create logging macros based on fmtlibGravatar Daniel Lim Wee Soong2018-03-227-66/+75
| | | | | | | | | | | | | | | | | | 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.