Signature
CLASS-METHODS class_constructor.
CLASS-METHODS class_constructor.CLASS-METHODS s_new_in_memory RETURNING VALUE(result) TYPE REF TO /ork/if_logger.METHODS constructor IMPORTING !scope TYPE /ork/if_logger=>ty_tt_scope OPTIONAL
!context TYPE /ork/if_logger=>ty_tt_context OPTIONAL.METHODS entry_to_json IMPORTING !entry TYPE /ork/if_logger=>ty_s_log_entry
RETURNING VALUE(result) TYPE REF TO /ork/if_json_node.METHODS entry_to_string IMPORTING !entry TYPE /ork/if_logger=>ty_s_log_entry
RETURNING VALUE(result) TYPE string.METHODS stamp_to_string IMPORTING !stamp TYPE timestampl
RETURNING VALUE(result) TYPE string.METHODS type_to_string IMPORTING !type TYPE csequence DEFAULT /ork/if_logger=>cm_type-e
RETURNING VALUE(result) TYPE string.BEGIN OF ty_s_logger,
none TYPE REF TO /ork/if_logger,
END OF ty_s_logger.CONSTANTS: BEGIN OF cm_context,
source TYPE string VALUE `source`,
END OF cm_context.CLASS-DATA sm TYPE ty_s_logger READ-ONLY.DATA my_scope TYPE /ork/if_logger=>ty_tt_scope.DATA my_context TYPE /ork/if_logger=>ty_tt_context.DATA my_entries TYPE /ork/if_logger=>ty_tt_entries.