diff src/name/blackcap/exifwasher/exiv2/Initialize.kt @ 2:efd9fe2d70d7

Rationalize exceptions, code whitelist, add command-line tool.
author David Barts <n5jrn@me.com>
date Wed, 01 Apr 2020 14:23:54 -0700
parents 42277ce58ace
children 9ac6136c710c
line wrap: on
line diff
--- a/src/name/blackcap/exifwasher/exiv2/Initialize.kt	Tue Mar 31 15:38:25 2020 -0700
+++ b/src/name/blackcap/exifwasher/exiv2/Initialize.kt	Wed Apr 01 14:23:54 2020 -0700
@@ -61,7 +61,6 @@
                 die("unable to create ${tPath}: ${message}")
             }
             try {
-                println("loading: ${tPath}")  /* debug */
                 System.load(tPath)
             } catch (e: UnsatisfiedLinkError) {
                 val message = e.message ?: "unsatisfied link"
@@ -70,7 +69,6 @@
         }
 
         initialized = true
-        System.err.println("libraries loaded")  /* debug */
     }
 
     private fun die(message: String) {