diff options
author | mwhitneysdsu <mwhitney@mail.sdsu.edu> | 2015-03-30 21:22:17 +0200 |
---|---|---|
committer | mwhitneysdsu <mwhitney@mail.sdsu.edu> | 2015-03-30 21:22:17 +0200 |
commit | 7a46bdeed5c1fb2dfafa18b7bd3a2315bd08255e (patch) | |
tree | 92f4a2be1a9e22d4c52be00fbbb8854e2f1c3eb3 /system/core/Loader.php | |
parent | 928134324d75ed4a876237ec00d4374b2213586a (diff) |
Fix logged path to match checked path in loader
This is to fix a logged path missed in
8f5c1780706113c926bb7801db27dbae97d00fcf
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r-- | system/core/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 254ad0d6d..c0a5cd634 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -1118,7 +1118,7 @@ class CI_Loader { } else { - log_message('debug', APPPATH.'libraries/'.$file_path.$subclass.'.php exists, but does not declare '.$subclass); + log_message('debug', $path.' exists, but does not declare '.$subclass); } } } |