Skip to content

Commit

Permalink
atf: reduce noise in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdibaiee committed Oct 27, 2023
1 parent 77d6dbb commit eed0198
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airbyte-to-flow/src/libs/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn check_exit_status(result: std::io::Result<ExitStatus>) -> Result<(), Erro
match result {
Ok(status) => {
if status.success() {
tracing::info!("atf: exited without error");
tracing::debug!("atf: exited without error");
Ok(())
} else {
match status.code() {
Expand Down
2 changes: 1 addition & 1 deletion airbyte-to-flow/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn main() -> anyhow::Result<()> {
},
Err(err) => Err(err.into()),
Ok(()) => {
tracing::info!(message = "atf exiting");
tracing::debug!(message = "atf exiting");
Ok(())
}
}
Expand Down
3 changes: 2 additions & 1 deletion local-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export DOCKER_BUILD_ARCH=amd64

if [ -f "airbyte-integrations/connectors/$connector/requirements.txt" ]; then
./tools/bin/setup_connector_venv.sh $connector python3.9
export AIRBYTE_TO_FLOW_TAG="dev"
./gradlew :airbyte-integrations:connectors:$connector:airbyteDocker
docker tag docker.io/airbyte/$connector:dev ghcr.io/estuary/$connector:local
else
Expand All @@ -34,4 +35,4 @@ if [[ "$_push" -eq "1" ]]; then
fi
docker tag docker.io/airbyte/$connector:dev ghcr.io/estuary/$connector:$tag
docker push ghcr.io/estuary/$connector:$tag
fi
fi

0 comments on commit eed0198

Please sign in to comment.