summaryrefslogtreecommitdiff
path: root/src/common/logging/log.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore: make yuzu REUSE compliantGravatar Andrea Pappacoda2022-07-271-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
* logging/log.h: move enum class formatter to a separate file ...Gravatar liushuyu2022-01-091-15/+1
| | | | ... to common/logging/formatter.h
* logging/log: use `underlying_type` instead of hardcoding typesGravatar liushuyu2022-01-081-2/+4
|
* logging: adapt to changes in fmt 8.1Gravatar liushuyu2022-01-081-1/+14
|
* common/logging: Reduce scope of fmt includeGravatar ameerj2021-10-011-1/+1
|
* common/logging: Move Log::Entry declaration to a separate headerGravatar ameerj2021-10-011-0/+4
| | | | This reduces the load of requiring to include std::chrono in all files which include log.h
* common: logging: Restructure backend codeGravatar Morph2021-06-131-119/+1
|
* common/log: Move Log namespace into the Common namespaceGravatar Lioncash2021-04-141-14/+20
| | | | | Forgot to move this over when I moved the rest of the source files with lacking namespaces over.
* bgtc: Update to 12.x and implement OpenTaskServiceGravatar Morph2021-04-091-0/+1
|
* hle: service: Stub OLSC Initialize and SetSaveDataBackupSettingEnabled ↵Gravatar bunnei2020-11-191-0/+1
| | | | | | functions. - Used by Animal Cross: New Horizons v1.6.0 update, minimal stub gets this update working.
* common/logging: don't use regex for path trimmingGravatar BreadFish642020-01-231-12/+21
|
* log: Add logging class for Cheat EngineGravatar Zach Hilman2019-09-211-0/+1
| | | This is better than just using something like Common.Filesystem or Common.Memory
* logging: Add Vulkan backend logging class typeGravatar ReinUsesLisp2019-02-121-0/+1
|
* logging/backend: Add missing services to the log filtersGravatar Lioncash2018-10-231-0/+2
| | | | Just a few overlooked services.
* service: Add skeleton for psm serviceGravatar Zach Hilman2018-10-201-0/+1
| | | | Seems to be the power controller. Listed in switchbrew under the category PTM services.
* Stubbed IRS (#1349)Gravatar David2018-09-231-0/+1
| | | | | | | | | | * Stubbed IRS Currently we have no ideal way of implementing IRS. For the time being we should have the functions stubbed until we come up with a way to emulate IRS properly. * Added IRS to logging backend * Forward declared shared memory for irs
* common/logging: Amend documentation commentsGravatar Lioncash2018-09-041-5/+5
| | | | | | | Multi-line doc comments still need the '<' after the ///, otherwise it's treated as a regular comment and makes the original doc comment broken in viewers, IDEs, etc. While we're at it, also fix some typos in the comments.
* common/logging: Add missing service log categoriesGravatar Lioncash2018-08-081-0/+8
| | | | These weren't added when the services were introduced.
* service: Add usb servicesGravatar Lioncash2018-08-071-0/+1
| | | | Adds basic skeleton for the usb services based off the information provided by Switch Brew.
* service: Add arp servicesGravatar Lioncash2018-08-041-0/+1
| | | | | 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-041-0/+1
|\ | | | | XCI and Encrypted NCA Support
| * Remove files that are not usedGravatar Zach Hilman2018-08-011-0/+1
| |
* | Merge pull request #898 from lioncash/migGravatar bunnei2018-08-031-0/+1
|\ \ | | | | | | service: Add migration services
| * | service: Add migration servicesGravatar Lioncash2018-08-021-0/+1
| | | | | | | | | | | | | | | 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-011-0/+1
|/ / | | | | | | | | 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-011-0/+1
|\ \ | | | | | | service: Add capture services
| * | service: Add capture servicesGravatar Lioncash2018-08-011-0/+1
| |/ | | | | | | | | Adds the basic skeleton for the capture services based off information provided by Switch Brew.
* / service: Add bpc and pcv servicesGravatar Lioncash2018-08-011-0/+2
|/ | | | | 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-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.
* 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.
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-021-7/+7
|
* 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-35/+0
| | | | 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
|
* GetIUserInterface->CreateUserInterface, Added todos and stub logs. ↵Gravatar David Marcec2018-04-221-0/+1
| | | | Playreport->PlayReport.