Removed unused code
This commit is contained in:
parent
ee37632695
commit
cec6f49023
2 changed files with 0 additions and 18 deletions
|
@ -197,7 +197,6 @@ class App
|
||||||
$this->footerScripts[] = trim($url, '/');
|
$this->footerScripts[] = trim($url, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
public $process_id;
|
|
||||||
public $queue;
|
public $queue;
|
||||||
private $scheme;
|
private $scheme;
|
||||||
private $hostname;
|
private $hostname;
|
||||||
|
@ -367,8 +366,6 @@ class App
|
||||||
$this->loadDefaultTimezone();
|
$this->loadDefaultTimezone();
|
||||||
|
|
||||||
Core\L10n::init();
|
Core\L10n::init();
|
||||||
|
|
||||||
$this->process_id = Core\System::processID('log');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -234,21 +234,6 @@ class System extends BaseObject
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates a process identifier for the logging
|
|
||||||
*
|
|
||||||
* @param string $prefix A given prefix
|
|
||||||
*
|
|
||||||
* @return string a generated process identifier
|
|
||||||
*/
|
|
||||||
public static function processID($prefix)
|
|
||||||
{
|
|
||||||
// We aren't calling any other function here.
|
|
||||||
// Doing so could easily create an endless loop
|
|
||||||
$trailer = $prefix . ':' . getmypid() . ':';
|
|
||||||
return substr($trailer . uniqid('') . mt_rand(), 0, 26);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current Load of the System
|
* Returns the current Load of the System
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue