Skip to content

Commit b53b704

Browse files
committed
Update customize log_message init
1 parent 21b01d2 commit b53b704

File tree

3 files changed

+415
-0
lines changed

3 files changed

+415
-0
lines changed

system/libraries/Data_tables.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ class CI_Data_tables
6868
*/
6969
public function __construct($params)
7070
{
71+
log_message('info', 'CI_Data_tables Class Initialized');
72+
7173
$this->table = (array_key_exists('table', $params) === true && is_string($params['table']) === true) ? $params['table'] : '';
7274

7375
$this->primary_key = (array_key_exists('primary_key', $params) === true && is_string($params['primary_key']) === true) ? $params['primary_key'] : '';

system/libraries/Image_lib_with_gd.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ class CI_Image_lib_with_gd
1414
protected $image;
1515
protected $imageFormat;
1616

17+
public function __construct(){
18+
log_message('info', 'CI_Image_lib_with_gd Class Initialized');
19+
}
20+
1721
public function load($imageFile)
1822
{
1923
$imageInfo = getImageSize($imageFile);

0 commit comments

Comments
 (0)