UnixFilename.st
branchjv
changeset 20731 bee58777b1f7
parent 19861 95c7068e30ba
child 21292 21faad473411
--- a/UnixFilename.st	Thu Oct 27 19:49:24 2016 +0000
+++ b/UnixFilename.st	Thu Oct 27 23:11:43 2016 +0000
@@ -61,8 +61,7 @@
         tempDirString notNil ifTrue:[
             tempDir := self named:tempDirString.    
             (tempDir exists and:[ tempDir isWritable ]) ifTrue:[
-                ('Filename [info]: using tmp folder "%1" as specified by environment: "%2"'
-                    bindWith:tempDir pathName with:envVar) infoPrintCR.
+                Logger info: 'using tmp folder "%1" as specified by environment: "%2"' with:tempDir pathName with:envVar.
                 ^ tempDir asFilename.
             ].
         ].
@@ -77,6 +76,8 @@
      Filename defaultTempDirectoryName exists
      Filename defaultTempDirectoryName isWritable
     "
+
+    "Modified: / 27-10-2016 / 23:09:08 / jv"
 ! !
 
 !UnixFilename class methodsFor:'queries'!