diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html index 6ddf7334c78a..dc773383e1d3 100644 --- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html +++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html @@ -4,9 +4,10 @@ This inspection reports classes which have multiple loggers declared. Ensuring that every class has a single dedicated logger is an important step in providing a unified logging implementation for an application. Interfaces, enumerations, annotations, inner classes, and abstract classes are not reported by this inspection. +

-Use the field below to specify the name of the class which will be used for logging in this project. -Classes which do declare multiple fields of that class will be reported by this inspection. +Use the table below to specify below to specify Logger class names. +Classes which declare multiple fields which have the type of one of the classes specified, will be reported by this inspection.

Powered by InspectionGadgets diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html index b3c1b3612ba1..a8f1f7bc6087 100644 --- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html +++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html @@ -3,9 +3,10 @@ This inspection reports classes which do not have a logger declared. Ensuring that every class has a dedicated logger is an important step in providing a unified logging implementation for an application. Interfaces, enumerations, annotations, inner classes, and abstract classes are not reported by this inspection. +

-Use the field below to specify the name of the class which will be used for logging in this project. -Classes which do not declare a field of that class will be reported by this inspection. +Use the table below to specify below to specify Logger class names. +Classes which do not declare a field with the type of one of the classes specified, will be reported by this inspection.

Powered by InspectionGadgets