-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatic update from mirror https://github.com/Marc-Bernard-Tools/Mirror-LOGGER Co-authored-by: mbtools <mbtools@users.noreply.github.com> Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
- Loading branch information
1 parent
fe06806
commit e5d8cdb
Showing
23 changed files
with
1,091 additions
and
196 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
CLASS /mbtools/cl_logger_injector DEFINITION | ||
PUBLIC | ||
FINAL | ||
FOR TESTING | ||
CREATE PUBLIC. | ||
|
||
************************************************************************ | ||
* abap logger | ||
* | ||
* Copyright 2017 Eric Peterson <https://github.com/ABAP-Logger/ABAP-Logger> | ||
* SPDX-License-Identifier: MIT | ||
************************************************************************ | ||
|
||
PUBLIC SECTION. | ||
|
||
CLASS-METHODS set_logger | ||
IMPORTING | ||
logger TYPE REF TO /mbtools/if_logger. | ||
|
||
CLASS-METHODS set_settings | ||
IMPORTING | ||
settings TYPE REF TO /mbtools/if_logger_settings. | ||
|
||
CLASS-METHODS set_collection | ||
IMPORTING | ||
collection TYPE REF TO /mbtools/if_logger_collection. | ||
|
||
CLASS-METHODS set_display_profile | ||
IMPORTING | ||
display_profile TYPE REF TO /mbtools/if_logger_disp_prof. | ||
|
||
PROTECTED SECTION. | ||
PRIVATE SECTION. | ||
ENDCLASS. | ||
|
||
|
||
|
||
CLASS /mbtools/cl_logger_injector IMPLEMENTATION. | ||
|
||
|
||
METHOD set_collection. | ||
/mbtools/cl_logger_factory=>log_collection = collection. | ||
ENDMETHOD. | ||
|
||
|
||
METHOD set_display_profile. | ||
/mbtools/cl_logger_factory=>log_display_profile = display_profile. | ||
ENDMETHOD. | ||
|
||
|
||
METHOD set_logger. | ||
/mbtools/cl_logger_factory=>log_logger = logger. | ||
ENDMETHOD. | ||
|
||
|
||
METHOD set_settings. | ||
/mbtools/cl_logger_factory=>log_settings = settings. | ||
ENDMETHOD. | ||
ENDCLASS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>/MBTOOLS/CL_LOGGER_INJECTOR</CLSNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>MBT ABAP Logger: Injector</DESCRIPT> | ||
<CATEGORY>05</CATEGORY> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
CLASS /mbtools/cl_logger_manifest DEFINITION | ||
PUBLIC | ||
FINAL | ||
CREATE PUBLIC. | ||
|
||
************************************************************************ | ||
* abap logger | ||
* | ||
* Copyright 2017 Eric Peterson <https://github.com/ABAP-Logger/ABAP-Logger> | ||
* SPDX-License-Identifier: MIT | ||
************************************************************************ | ||
|
||
PUBLIC SECTION. | ||
|
||
INTERFACES if_apack_manifest. | ||
|
||
METHODS constructor. | ||
PROTECTED SECTION. | ||
PRIVATE SECTION. | ||
ENDCLASS. | ||
|
||
|
||
|
||
CLASS /mbtools/cl_logger_manifest IMPLEMENTATION. | ||
|
||
|
||
METHOD constructor. | ||
|
||
if_apack_manifest~descriptor-group_id = 'github.com/ABAP-Logger'. | ||
if_apack_manifest~descriptor-artifact_id = 'ABAP-Logger'. | ||
if_apack_manifest~descriptor-version = '1.0.0'. | ||
if_apack_manifest~descriptor-git_url = 'https://github.com/ABAP-Logger/ABAP-Logger'. | ||
|
||
ENDMETHOD. | ||
ENDCLASS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>/MBTOOLS/CL_LOGGER_MANIFEST</CLSNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>MBT ABAP-Logger: Apack Manifest</DESCRIPT> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
<DESCRIPTIONS> | ||
<SEOCOMPOTX> | ||
<CMPNAME>CONSTRUCTOR</CMPNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>CONSTRUCTOR</DESCRIPT> | ||
</SEOCOMPOTX> | ||
</DESCRIPTIONS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |
Oops, something went wrong.