override fun run()

in ruler-cli/src/main/java/com/spotify/ruler/cli/RulerCli.kt [178:197]


    override fun run() {

        logger.log(
            Level.INFO, """
        ~~~~~ Starting Ruler ~~~~~
       
        Using Dependency Map: ${dependencyMap.path}
        Using APK File: ${apkFile?.path}
        Using Bundle File: ${bundleFile?.path}
        Using Proguard Mapping File: ${mappingFile?.path}
        Using Resource Mapping File: ${resourceMappingFile?.path}
        Using AAPT2: ${aapt2Tool?.path}
        Using Bloaty: ${bloatyTool?.path}
        Writing reports to: ${reportDir.path}
        Verifying download size under: $downloadSizeThreshold
        Verifying install size under: $installSizeThreshold
        """.trimIndent()
        )
        super.run()
    }