We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e815be commit 6fb8766Copy full SHA for 6fb8766
hermetic_build/common/cli/get_changed_libraries.py
@@ -11,14 +11,20 @@
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
-import os
15
16
-import click as click
+# Setup logging
+import logging
17
+import sys
18
+logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
19
+
20
+import os
21
+import click
22
23
from common.model.generation_config import GenerationConfig
24
from common.utils.generation_config_comparator import compare_config
25
26
27
28
@click.group(invoke_without_command=False)
29
@click.pass_context
30
@click.version_option(message="%(version)s")
0 commit comments