Skip to content

Commit 0c16712

Browse files
committed
fixed some issues
1 parent 616d6ec commit 0c16712

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

pub/errors/local.xml.sample

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
<config>
9+
<skin>default</skin>
10+
<report>
11+
<!--
12+
"action" can be set to "print" to show exception on screen and "email"
13+
to send exception on specified email
14+
-->
15+
<action>print</action>
16+
<!--
17+
in "subject" you can set subject of email
18+
-->
19+
<subject>Store Debug Information</subject>
20+
<!--
21+
"email_address" admin email address
22+
-->
23+
<email_address></email_address>
24+
<!--
25+
"trash" is handle about trace info
26+
value "leave" is for store on disk
27+
value "delete" is for cleaning
28+
-->
29+
<trash>leave</trash>
30+
<!--
31+
The number of subdirectories that will be created to save the report.
32+
Valid Values: Integers from 0 to 32
33+
34+
Example:
35+
If we have the report name as hash sha256('') = 44ffb1087a44e61b018b3cdee72284d017f22e52755c24e5c85cbac1647ae7a7
36+
37+
dir_nesting_level=0 -> <magento_root>/var/report/44ffb1087a44e61b018b3cdee72284d017f22e52755c24e5c85cbac1647ae7a7
38+
dir_nesting_level=1 -> <magento_root>/var/report/44/44ffb1087a44e61b018b3cdee72284d017f22e52755c24e5c85cbac1647ae7a7
39+
dir_nesting_level=2 -> <magento_root>/var/report/44/ff/44ffb1087a44e61b018b3cdee72284d017f22e52755c24e5c85cbac1647ae7a7
40+
...
41+
dir_nesting_level=32 -> <magento_root>/var/report/44/ff/b1/08/7a/44/e6/1b/01/8b/3c/de/e7/22/84/d0/17/f2/2e/52/75/5c/24/e5/c8/5c/ba/c1/64/7a/e7/a7/44ffb1087a44e61b018b3cdee72284d017f22e52755c24e5c85cbac1647ae7a7
42+
43+
If you use an environment variable MAGE_ERROR_REPORT_DIR_NESTING_LEVEL, this property will be ignored.
44+
Environment variable has a higher priority.
45+
-->
46+
<dir_nesting_level>0</dir_nesting_level>
47+
</report>
48+
</config>

0 commit comments

Comments
 (0)