summaryrefslogtreecommitdiffstats
path: root/class/FedoraClient.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2010-06-07 02:35:36 +0800
committertrasher <trasher@x-tnd.be>2010-06-08 01:57:54 +0800
commitd1c15227b18177ff0d3a33ce8f8ee2c563a5cf4d (patch)
tree7a8156779c8b66e0b363719d0543fa8191845408 /class/FedoraClient.php
parente2d95ce49a85b3e0d3c0ede1ce3b215eb1cc2566 (diff)
Introduce CommonTable, TableIterator, TablePearRepo classes (and use it in refresh)
Diffstat (limited to 'class/FedoraClient.php')
-rw-r--r--class/FedoraClient.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/class/FedoraClient.php b/class/FedoraClient.php
index e003a03..43d9dce 100644
--- a/class/FedoraClient.php
+++ b/class/FedoraClient.php
@@ -227,10 +227,12 @@ class FedoraPkgdb extends FedoraClient
);
return false;
}
+ $this->logDebug(8,print_r($rep,true));
$branches = array();
foreach ($rep['packageListings'] as $pack) {
$branches[$pack['collection']['branchname']] = $pack;
}
+ $this->logDebug(7,print_r($branches,true));
return $branches;
}