elementary 6.1

This commit is contained in:
Aode (Lion) 2022-02-05 18:27:14 -06:00
parent 436baaf0c2
commit b5a8adab18
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
app-id: dog.asonix.git.asonix.Streamdeck
runtime: io.elementary.Platform
runtime-version: 'daily'
runtime-version: '6.1'
sdk: io.elementary.Sdk
sdk-extensions:
- 'org.freedesktop.Sdk.Extension.rust-stable'
@ -22,7 +22,7 @@ build-options:
- '--share=network'
env:
RUST_BACKTRACE: "1"
RUST_LOG: streamdeck=debug
RUST_LOG: streamdeck=debug,streamdeck_daemon=debug
cleanup:
- '/include'
@ -39,7 +39,7 @@ modules:
- name: streamdeck
buildsystem: meson
config-opts:
- -Dbuildtype=release
- -Dbuildtype=debug
sources:
- type: dir
path: .

View file

@ -17,7 +17,7 @@ use store::Store;
#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
if std::env::var("RUST_LOG").is_err() {
std::env::set_var("RUST_LOG", "info");
std::env::set_var("RUST_LOG", "streamdeck_daemon=debug,info");
}
env_logger::init();