mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-24 05:25:21 +00:00
Rename log() to trace(), added success() level explenation and made use description clearer
parent
45575f6c52
commit
c265b76204
1 changed files with 2 additions and 1 deletions
|
@ -43,9 +43,10 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't
|
|||
* Use `moduleName.todo()` and other associated methods.
|
||||
* Use `.todo()` method for unimplemented functions.
|
||||
* Use `.error()` method to print error inside of function that may require user's attention. For example, some file is not found or some emulation option is not set correctly.
|
||||
* Use `.succcess()` method for well-implemeneted, rarely-called but common functions.
|
||||
* Use `.warning()` method for partially implemented functions which still have some unimplemented functionality.
|
||||
* Use `.notice()` method to print debug information unconditionally.
|
||||
* Use `.log()` method for well implemented functions.
|
||||
* Use `.trace()` method for well implemented and often-called functions.
|
||||
* Don't return CELL_OK and other error codes if the function result type doesn't mean error code.
|
||||
|
||||
***
|
||||
|
|
Loading…
Add table
Reference in a new issue