dummyFetchTxnLogs.php 369 B

12345678910111213141516171819202122
  1. <?php
  2. $txnId = $_GET['txnId'];
  3. define('LAST_PROGRESS_STATE_INDEX_FILE', '/tmp/rezDeployProgressStateIndex' . $txnId);
  4. $logs = '';
  5. /* Generate long logs. */
  6. for($i = 0; $i < 100; $i++) {
  7. $logs .= "1111 <br/>";
  8. }
  9. $jsonOutput = array(
  10. 'txnId' => $txnId,
  11. 'logs' => $logs );
  12. header("Content-type: application/json");
  13. print (json_encode($jsonOutput));
  14. ?>