Skip to content

Commit

Permalink
chore: try debug style
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Jan 7, 2024
1 parent a48c613 commit 8f3ea14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
shell: bash
if: runner.os == 'Linux'
# NOTE: Linux was excluded because the location of the GUI could not be identified.
run: tar -czvf ./build/g_dar2oar-${{ runner.os}}.tar.gz ./target/release/dar2oar
run: ls -a ./target/release;tar -czvf ./build/g_dar2oar-${{ runner.os}}.tar.gz ./target/release/dar2oar

- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
Expand Down
4 changes: 2 additions & 2 deletions dar2oar_core/src/condition_parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::error::{ConvertError, Result};
pub fn parse_dar2oar(input: &str) -> Result<Vec<ConditionSet>> {
let (remain, dar_syn) = match parse_condition(input) {
Ok(syn) => {
tracing::debug!("Input => Parsed DAR:\n{:?}", syn);
tracing::debug!("Input => Parsed DAR:\n{:#?}", syn);
syn
}
Err(err) => {
Expand All @@ -32,7 +32,7 @@ pub fn parse_dar2oar(input: &str) -> Result<Vec<ConditionSet>> {
match remain.is_empty() {
true => {
let oar = parse_conditions(dar_syn)?;
tracing::debug!("Parsed DAR => Serialized OAR:\n{:?}", &oar);
tracing::debug!("Parsed DAR => Serialized OAR:\n{:#?}", &oar);
Ok(oar.try_into()?)
}
false => Err(ConvertError::IncompleteParseDar(remain.into())),
Expand Down

0 comments on commit 8f3ea14

Please sign in to comment.