Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Jul 17, 2022
1 parent 6263317 commit 20fdfc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/en/manuals/debugging-game-and-system-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ You can use the Android Debug Bridge (ADB) tool to view the game and system log.
Once installed and setup, connect your device with USB, open a terminal and run:

```txt
$cd <path_to_android_sdk>/platform-tools/
$adb logcat
$ cd <path_to_android_sdk>/platform-tools/
$ adb logcat
```

The device will then dump all the output to the current terminal, along with any prints from the game.
Expand Down
6 changes: 3 additions & 3 deletions docs/en/manuals/debugging-native-code-android.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Here we describe how to debug a build using [Android Studio](https://developer.a

![path_mapping2](images/extensions/debugging/android/path_mappings_android2.png)

* If you have access to the engine source, add a path mapping to that too
* If you have access to the engine source, add a path mapping to that too.

* make sure to checkout the version you are currently debugging
* Make sure to checkout the version you are currently debugging

defold$ git checkout 1.2.148
defold$ git checkout 1.2.148

* Press `Apply changes`

Expand Down
2 changes: 1 addition & 1 deletion docs/en/manuals/debugging-native-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ If a crash happens on a mobile device you can chose to download the crash file t
If the app is [debuggable](/manuals/project-settings/#android), you can get the crash log using the [Android Debug Bridge (ADB) tool](https://developer.android.com/studio/command-line/adb.html) and the `adb shell` command:

```
$ adb shell "run-as com.defold.example sh -c 'cat /data/data/com.defold.example/files/_crash'" > ./_crash
$ adb shell "run-as com.defold.example sh -c 'cat /data/data/com.defold.example/files/_crash'" > ./_crash
```

#### iOS
Expand Down

0 comments on commit 20fdfc5

Please sign in to comment.