Commit 55e45a49 authored by peterd-NV's avatar peterd-NV Committed by Kelly Guo

Disables kit app python printing for XR (#457)

# Description

<!--
Thank you for your interest in sending a pull request. Please make sure
to check the contribution guidelines.

Link:
https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
-->

Updates the XR related kit files to add arguments that disables kit app
from also printing python output. This prevents kit from reporting
python user warnings and other logging messages as errors during
runtime. The other kit files already contain these arguments to suppress
kit from double printing python logs.

Fixes # (issue)

Fixes false reporting of kit errors.

## Type of change

<!-- As you go through the list, delete the ones that are not
applicable. -->

- Bug fix (non-breaking change which fixes an issue)

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->
parent 18ad32a8
......@@ -23,6 +23,11 @@ app.version = "5.0.0"
[settings]
xr.profile.ar.enabled = true
[settings.app.python]
# These disable the kit app from also printing out python output, which gets confusing
interceptSysStdOutput = false
logSysStdOutput = false
# Register extension folder from this repo in kit
[settings.app.exts]
folders = [
......
......@@ -36,6 +36,11 @@ renderer.gpuEnumeration.glInterop.enabled = true # Allow Kit XR OpenXR to render
[settings]
app.xr.enabled = true
[settings.app.python]
# These disable the kit app from also printing out python output, which gets confusing
interceptSysStdOutput = false
logSysStdOutput = false
# xr settings
xr.ui.enabled = false
xr.depth.aov = "GBufferDepth"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment