Fix logger warning level
This commit is contained in:
parent
db0159c7f2
commit
cb4bab61c1
|
@ -100,7 +100,7 @@
|
||||||
<div class="peertube-select-container">
|
<div class="peertube-select-container">
|
||||||
<select id="broadcastMessageLevel" formControlName="level" class="form-control">
|
<select id="broadcastMessageLevel" formControlName="level" class="form-control">
|
||||||
<option value="info">info</option>
|
<option value="info">info</option>
|
||||||
<option value="warning">warning</option>
|
<option value="warn">warning</option>
|
||||||
<option value="error">error</option>
|
<option value="error">error</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,6 +12,7 @@ $context-menu-width: 350px;
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
width: $context-menu-width;
|
width: $context-menu-width;
|
||||||
|
z-index: 105; // On top of the progress bar
|
||||||
|
|
||||||
.vjs-menu-content {
|
.vjs-menu-content {
|
||||||
opacity: $primary-foreground-opacity;
|
opacity: $primary-foreground-opacity;
|
||||||
|
|
|
@ -474,7 +474,7 @@ theme:
|
||||||
broadcast_message:
|
broadcast_message:
|
||||||
enabled: false
|
enabled: false
|
||||||
message: '' # Support markdown
|
message: '' # Support markdown
|
||||||
level: 'info' # 'info' | 'warning' | 'error'
|
level: 'info' # 'info' | 'warn' | 'error'
|
||||||
dismissable: false
|
dismissable: false
|
||||||
|
|
||||||
search:
|
search:
|
||||||
|
|
|
@ -11,4 +11,4 @@ npm run clean:server:test
|
||||||
|
|
||||||
npm run concurrently -- -k -s first \
|
npm run concurrently -- -k -s first \
|
||||||
"cd client && npm run ng -- e2e --port 3333" \
|
"cd client && npm run ng -- e2e --port 3333" \
|
||||||
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|
||||||
|
|
|
@ -12,4 +12,4 @@ npm run clean:server:test
|
||||||
|
|
||||||
npm run concurrently -- -k -s first \
|
npm run concurrently -- -k -s first \
|
||||||
"cd client && npm run ng -- e2e --port 3333 -c local" \
|
"cd client && npm run ng -- e2e --port 3333 -c local" \
|
||||||
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|
||||||
|
|
|
@ -132,7 +132,7 @@ function checkConfig () {
|
||||||
// Broadcast message
|
// Broadcast message
|
||||||
if (CONFIG.BROADCAST_MESSAGE.ENABLED) {
|
if (CONFIG.BROADCAST_MESSAGE.ENABLED) {
|
||||||
const currentLevel = CONFIG.BROADCAST_MESSAGE.LEVEL
|
const currentLevel = CONFIG.BROADCAST_MESSAGE.LEVEL
|
||||||
const available = [ 'info', 'warning', 'error' ]
|
const available = [ 'info', 'warn', 'error' ]
|
||||||
|
|
||||||
if (available.includes(currentLevel) === false) {
|
if (available.includes(currentLevel) === false) {
|
||||||
return 'Broadcast message level should be ' + available.join(' or ') + ' instead of ' + currentLevel
|
return 'Broadcast message level should be ' + available.join(' or ') + ' instead of ' + currentLevel
|
||||||
|
|
|
@ -62,7 +62,7 @@ storage:
|
||||||
client_overrides: '../data/client-overrides/'
|
client_overrides: '../data/client-overrides/'
|
||||||
|
|
||||||
log:
|
log:
|
||||||
level: 'info' # debug/info/warning/error
|
level: 'info' # debug/info/warn/error
|
||||||
|
|
||||||
tracker:
|
tracker:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue