Skip to content

Commit 6fb8766

Browse files
committed
fix: visibilize git operations in changed library list generation
1 parent 4e815be commit 6fb8766

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

hermetic_build/common/cli/get_changed_libraries.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,20 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
import os
1514

16-
import click as click
15+
# Setup logging
16+
import logging
17+
import sys
18+
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
19+
20+
import os
21+
import click
1722

1823
from common.model.generation_config import GenerationConfig
1924
from common.utils.generation_config_comparator import compare_config
2025

2126

27+
2228
@click.group(invoke_without_command=False)
2329
@click.pass_context
2430
@click.version_option(message="%(version)s")

0 commit comments

Comments
 (0)