We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each logs report must contains:
ts
level
TRACE
DEBUG
INFO
WARN
ERROR
FATAL
module
RN
Native
class
msg
Example:
enum LogLevel { TRACE = 1, DEBUG = 2, INFO = 3, ... } enum LogModule { RN = 1, NATIVE = 2, } { "ts": 1644853187005, "level": LogLevel.DEBUG, "module": LogModule.RN, "class": "MinerScreen", "msg": "Miner screen has been loaded", }
The text was updated successfully, but these errors were encountered:
/cib
Sorry, something went wrong.
Branch issue-111-Add_Application_Logs created!
Branch already exists
garrylachman
No branches or pull requests
Each logs report must contains:
ts
- Report timestamplevel
- Report level (TRACE
,DEBUG
,INFO
,WARN
,ERROR
,FATAL
)module
- one ofRN
(React native / User Interface)Native
(Kotlin/Java Native "backend")class
- Reporter class/featuremsg
- Log contentExample:
The text was updated successfully, but these errors were encountered: