Changeset 1120

Show
Ignore:
Timestamp:
09/08/08 05:45:16 (3 months ago)
Author:
arnoschn
Message:

adding info messages for caching.yml generation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/arnoschn/cache/lib/utils/scripts/ci-test.php

    r1119 r1120  
    467467        $file2 = AK_CI_TEST_DIR.DS.'config'.DS.'caching.yml'; 
    468468        $templateFile = AK_BASE_DIR.DS.'script'.DS.'extras'.DS.'TPL-caching.yml'; 
    469         $this->info('Creating caching configuration for'); 
     469        $this->info('Creating caching configuration: ' .$file1); 
    470470        $res1 = file_put_contents($file1,str_replace('${memcached_server}',$socket,file_get_contents($templateFile)))>0; 
     471        $this->info('Creating caching configuration: ' .$file2); 
    471472        $res2 = file_put_contents($file1,str_replace('${memcached_server}',$socket,file_get_contents($templateFile)))>0; 
    472473        $res3 = file_put_contents(AK_CI_CONFIG_FILE,str_replace('memcached-socket: ','memcached-socket: '.$socket,file_get_contents(AK_CI_CONFIG_FILE)));