@nine-lab/nine-mu 0.1.350 → 0.1.351
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -145,28 +145,31 @@ export class NineExceptionHook extends React.Component {
|
|
|
145
145
|
{
|
|
146
146
|
style: { ...NineExceptionStyles.container, ...customStyles.container, ...this.props.containerStyle }
|
|
147
147
|
},
|
|
148
|
+
|
|
149
|
+
/**
|
|
148
150
|
// 1. 상단 프롬프트 헤더 (시스템 상태 알림)
|
|
149
151
|
React.createElement(
|
|
150
152
|
'div',
|
|
151
153
|
{ style: { ...NineExceptionStyles.title, ...customStyles.title } },
|
|
152
154
|
React.createElement('span', { style: { color: '#38A169', marginRight: '5px' } }, 'nandoo@nine-mu:~$'),
|
|
153
155
|
'./system-check --status'
|
|
154
|
-
),
|
|
156
|
+
), */
|
|
155
157
|
|
|
156
158
|
// 2. 시스템 에러 감지 출력 로그
|
|
157
159
|
React.createElement(
|
|
158
160
|
'div',
|
|
159
|
-
{ style: { color: '
|
|
161
|
+
{ style: { color: 'red', margin: '15px 0 5px 0', letterSpacing: '0.5px' } },
|
|
160
162
|
'[SYSTEM] COMPONENT RENDER ERROR DETECTED'
|
|
161
163
|
),
|
|
162
164
|
|
|
165
|
+
/**
|
|
163
166
|
// 3. 명령어 입력 시뮬레이션 ($ cat error.log)
|
|
164
167
|
React.createElement(
|
|
165
168
|
'p',
|
|
166
169
|
{ style: { ...NineExceptionStyles.label, ...customStyles.label } },
|
|
167
170
|
React.createElement('span', { style: { color: '#3182CE', marginRight: '6px' } }, 'nandoo@nine-mu:~$'),
|
|
168
171
|
'cat error.log'
|
|
169
|
-
),
|
|
172
|
+
), */
|
|
170
173
|
|
|
171
174
|
// 4. 에러 내용 본문 박스
|
|
172
175
|
React.createElement('pre', { style: { ...NineExceptionStyles.pre, ...customStyles.pre } }, errorMessage),
|