summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lm: Use LOG_DEBUG for printing out trace logsLioncash2018-08-151-1/+1
| | | | | | | Using LOG_TRACE here isn't a good idea because LOG_TRACE is only enabled when yuzu is compiled in debug mode. Debug mode is also quite slow, and so we're potentially throwing away logging messages that can provide value when trying to boot games.
* lm: Handle threads and modules within the loggerLioncash2018-08-151-1/+19
| | | | | | | | | | The thread field serves to indicate which thread a log is related to and provides the length of the thread's name, so we can print that out, ditto for modules. Now we can know what threads are potentially spawning off logging messages (for example Lydie & Suelle bounces between MainThread and LoadingThread when initializing the game).
* lm: Amend name of ILoggerLioncash2018-08-011-4/+4
| | | | | Previously this was being registered with the name "Logger". While we're at it, also change the name of the class to match it.
* lm: Move LM's class declaration into the cpp fileLioncash2018-07-262-37/+31
| | | | | This isn't used directly outside of this translation unit, so we can hide it from external use.
* lm: Amend names of Initialize() in Logger and Initialize() in LMLioncash2018-07-262-7/+7
| | | | Amends these to match the information on Switch Brew.
* lm: Add missing function entry to Logger's function tableLioncash2018-07-261-0/+1
|
* Rename logging macro back to LOG_*James Rowe2018-07-031-6/+6
|
* lm: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-6/+6
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-202-8/+4
| | | | Tidies up namespace declarations
* Service/lm: add support to multiline logsmailwl2018-02-131-20/+49
|
* logger: Add LM service logging category.bunnei2018-02-051-2/+2
|
* lm: Ensure log string is non-empty before checking back().bunnei2018-02-051-1/+1
|
* hle: Rename RequestBuilder to ResponseBuilder.bunnei2018-01-251-2/+2
|
* service: Fix all incorrect IPC response headers.bunnei2018-01-251-14/+4
|
* Services: Added a todo about returning interfaces as domain objects in lm, hid and time.Subv2018-01-231-0/+3
|
* LM: Don't create an unnecessary port in Initialize.Subv2018-01-222-15/+10
|
* lm: Minor logging fix to skip a byte.bunnei2018-01-181-0/+7
|
* lm: Fix IPC header for Initialize.bunnei2018-01-151-1/+1
|
* yuzu: Update license text to be consistent across project.bunnei2018-01-132-2/+2
|
* Services: Allow lm to log single-character messages.Subv2018-01-101-7/+3
|
* IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.Subv2018-01-071-1/+1
| | | | Popping objects from the buffer is still not implemented.
* lm: Assert on unsupported multi-message.bunnei2018-01-061-0/+9
|
* lm: Improve Log() to format a useful string.bunnei2018-01-051-10/+75
|
* service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.bunnei2017-12-282-4/+2
|
* lm: Implement lm::Initialize and Logger::log.bunnei2017-10-192-3/+67
|
* hle: Implement ConvertSessionToDomain, various cleanups.bunnei2017-10-151-5/+1
|
* hle: Add service stubs for apm and appletOE.bunnei2017-10-151-1/+1
|
* hle: Initial implementation of NX service framework and IPC.bunnei2017-10-152-0/+68