remove logger lines

This commit is contained in:
Andrew Manning 2017-02-11 20:54:09 -05:00
parent 1cd1328b0c
commit 0017de46e4
2 changed files with 0 additions and 2 deletions

View File

@ -288,7 +288,6 @@ class Webpages extends \Zotlabs\Web\Controller {
if ($zip->open($source) === true) {
$tmp_folder_name = random_string(5);
$website = dirname($source) . '/' . $tmp_folder_name;
logger($website ,LOGGER_DEBUG);
$zip->extractTo($website); // change this to the correct site path
$zip->close();
@unlink($source); // delete the compressed file now that the content has been extracted

View File

@ -1295,7 +1295,6 @@ function import_webpage_element($element, $channel, $type) {
// LAYOUTS
//
case 'layout':
logger('Importing layout...', LOGGER_DEBUG);
$arr['item_type'] = ITEM_TYPE_PDL;
$namespace = 'PDL';
$name = $element['name'];