What add-ins create messages in ExpressionEngine Dev Log?

Is there a way to find out which add-ons create messages in the developer log in the EE control panel or is this a repair process?

Message example:

  • A third-party add-on calls $ this-> load-> library ('security'), which is deprecated since the CI_Security class has been ported to Core, so it always loads.

  • The system detected an add-in that uses outdated code that may stop working or cause problems with the system. Deprecated function login_form () called on line 0.

+8
expressionengine
source share
2 answers
  • This message is likely to be removed in a future version. This causes too much confusion than help, and this is not entirely necessary. Yes, it would be helpful if the development magazine tells you which addon is causing the problem, but the logistics of parsing backtracks to find this information is difficult. This leads us to message # 2:

  • As GDmac said, it is best to look for your project for any login_form () calls in the CP controller. Usually a file and line number is provided in this type of message, but, as I said, analyzing backtrace information does not always work.

We will continue to try to make it better. Obsolete warnings work fine for the most part, but sometimes messages like these can be hard to figure out what to do with them.

+3
source share

A decent text editor can search through your third-party directory and
find the line containing load->library('security')

0
source share

All Articles