error method

  1. @override
Future<RequestResponse<FrappeLog?>> error({
  1. String? content,
  2. String? title,
  3. List<String>? tags,
})

Basic Logging

Implementation

@override
Future<RequestResponse<FrappeLog?>> error(
    {String? content, String? title, List<String>? tags}) {
  if (content == null || content.isEmpty) {
    throw EmptyContentError();
  }
  return invokeLogger(
      cmd: 'renovation_core.utils.logging.log_error',
      content: content,
      title: title,
      tags: tags);
}