Ln.java + DEVELOP.md

This commit is contained in:
EDJ 2022-06-02 00:59:15 +01:00
parent 7fa3f7a360
commit 03db5707d7
No known key found for this signature in database
GPG key ID: 96319C2E213473A3
2 changed files with 3 additions and 2 deletions

View file

@ -20,12 +20,11 @@ The client captures relevant keyboard and mouse events, that it transmits to the
server, which injects them to the device.
## Server
### Privileges
Capturing the screen requires some privileges, which are granted to `shell`.
The server is a Java application (with a [`public static void main(String...

View file

@ -36,6 +36,8 @@ public final class Ln {
return level.ordinal() >= threshold.ordinal();
}
// "v", "d", "i" (functions?) -> to a (public static void) "log_msg" ?
public static void v(String message) {
if (isEnabled(Level.VERBOSE)) {
Log.v(TAG, message);