Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Debugging/debugLogFiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ The following fields are logged for each event:
|timestamp|Date and time in ISO 8601 format (YYYY-MM-DDThh:mm:ss.mmm)|
|loggerID|Optional|
|componentSignature|Optional - internal component signature|
|messageLevel|Trace, Debug, Info, Warning, Error|
|messageLevel|Trace, Debug, Info, Warning, Error, Fatal|
|message|Description of the log entry|

Depending on the event, various other fields can also be logged, such as task, socket, etc.
Expand Down
4 changes: 2 additions & 2 deletions docs/language-legacy/XML DOM/dom-append-xml-child-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---

<!--REF #_command_.DOM Append XML child node.Syntax-->**DOM Append XML child node** ( *elementRef* : Text ; *childType* : Integer ; *childValue* : Text, Blob ) : Text<!-- END REF-->
<!--REF #_command_.DOM Append XML child node.Syntax-->**DOM Append XML child node** ( *elementRef* : Text ; *childType* : Integer ; *childValue* : any ) : Text<!-- END REF-->
<!--REF #_command_.DOM Append XML child node.Params-->
<div class="no-index">

| Parameter | Type | | Description |
| --- | --- | --- | --- |
| elementRef | Text | &#8594; | XML element reference |
| childType | Integer | &#8594; | Type of child to append |
| childValue | Text, Blob | &#8594; | Text or variable (Text or BLOB) whose value must be inserted as child node |
| childValue | any | &#8594; | Text or variable (Text or BLOB) whose value must be inserted as child node |
| Function result | Text | &#8592; | Reference of child XML element |
</div>
<!-- END REF-->
Expand Down
6 changes: 3 additions & 3 deletions docs/language-legacy/XML SAX/sax-open-xml-element-arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---

<!--REF #_command_.SAX OPEN XML ELEMENT ARRAYS.Syntax-->**SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *tag* : Text {; ...(*attribNamesArray* : Text array ; *attribValuesArray* : Array)} )<!-- END REF-->
<!--REF #_command_.SAX OPEN XML ELEMENT ARRAYS.Syntax-->**SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *tag* : Text {; ...(*attribNamesArray* : Text array ; *attribValuesArray* : Array)} )<br/>*SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *tag* : Text {; ...(*attribNamesArray* : Text ; *attribValuesArray* : Text)} )<!-- END REF-->
<!--REF #_command_.SAX OPEN XML ELEMENT ARRAYS.Params-->
<div class="no-index">

| Parameter | Type | | Description |
| --- | --- | --- | --- |
| document | Time | &#8594; | Reference of open document |
| tag | Text | &#8594; | Name of element to open |
| attribNamesArray | Text array | &#8594; | Array of attribute names |
| attribValuesArray | Array | &#8594; | Array of attribute values |
| attribNamesArray | Text array, Text | &#8594; | Array of attribute names |
| attribValuesArray | Array, Text | &#8594; | Array of attribute values |
</div>
<!-- END REF-->

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-20/Debugging/debugLogFiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ The following fields are logged for each event:
|timestamp|Date and time in ISO 8601 format (YYYY-MM-DDThh:mm:ss.mmm)|
|loggerID|Optional|
|componentSignature|Optional - internal component signature|
|messageLevel|Trace, Debug, Info, Warning, Error|
|messageLevel|Trace, Debug, Info, Warning, Error, Fatal|
|message|Description of the log entry|

Depending on the event, various other fields can also be logged, such as task, socket, etc.
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-21-R2/Debugging/debugLogFiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ The following fields are logged for each event:
|timestamp|Date and time in ISO 8601 format (YYYY-MM-DDThh:mm:ss.mmm)|
|loggerID|Optional|
|componentSignature|Optional - internal component signature|
|messageLevel|Trace, Debug, Info, Warning, Error|
|messageLevel|Trace, Debug, Info, Warning, Error, Fatal|
|message|Description of the log entry|

Depending on the event, various other fields can also be logged, such as task, socket, etc.
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-21/Debugging/debugLogFiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ The following fields are logged for each event:
|timestamp|Date and time in ISO 8601 format (YYYY-MM-DDThh:mm:ss.mmm)|
|loggerID|Optional|
|componentSignature|Optional - internal component signature|
|messageLevel|Trace, Debug, Info, Warning, Error|
|messageLevel|Trace, Debug, Info, Warning, Error, Fatal|
|message|Description of the log entry|

Depending on the event, various other fields can also be logged, such as task, socket, etc.
Expand Down
Loading