Key questions about this property
The answers below summarize the purpose, scope, default effect, and review scenarios for this property.
| What does it do? |
This property controls the availability of log(), logError(), and logWarning() methods in the sandbox, enhancing security by limiting logging capabilities. |
| What area does it affect? |
Script execution security |
| What does the default mean? |
The default value is "true", which means this behavior is enabled by default. |
| When should you review it? |
Review this property when configuring sandbox environments or addressing security concerns related to script logging. |
Out of the box property record
Raw metadata from the property record.
| Property name |
glide.security.sandbox_no_logging |
| Sys ID |
aab7d301970130008e00958e3b297575 |
| Type |
boolean |
| Application |
Global |
| Default value |
true |
| Description |
Specifies whether to block the log(), logError(), and logWarning() methods when running script from the sandbox |
| Updated |
2024-05-25 04:03:33 |
Sources
Official references and nearby text excerpts where this property appears.
Context preview
Snippet 1
... sandbox These methods aren’t supported in client-generated scripts in the script sandbox. Note: The GlideSystem (gs) methods log(), logError(), and logWarning() can be enabled with script sandboxing by setting the glide.security.sandbox_no_logging system property to false. Restricted methods Class Method GlideRecord • deleteMultiple() • deleteRecord() • getRowCount() • insert() • update() • updateMultiple() GlideSystem (gs) • addErrorMessage() • addInfoMessage() • addMessage() • ...
Context preview
Snippet 2
... <blank> ◦(New This could allow information disclosure in the event that stale accounts are compromised. Disable logger for low privilege users in script sandbox • Description ◦(Old <blank> ◦(New If "glide.security.sandbox_no_logging" is set to "false", then logging will be available for low-privileged users using sandboxed scripts. This property controls Glide System's ability to log scripts being executed in the sandbox environment. ...
Related properties