Removed fire emoji prefix for firewall logs.

Change-type: patch
This commit is contained in:
peakyDicers 2021-08-02 17:10:05 -04:00
parent 49a391823c
commit 30c728fae2

View File

@ -21,7 +21,6 @@ export const initialised = (async () => {
})();
const BALENA_FIREWALL_CHAIN = 'BALENA-FIREWALL';
const LOG_PREFIX = '🔥';
const prepareChain: iptables.Rule[] = [
{
@ -155,7 +154,7 @@ export async function applyFirewallMode(mode: string) {
mode = 'off';
}
log.info(`${LOG_PREFIX} Applying firewall mode: ${mode}`);
log.info(`Applying firewall mode: ${mode}`);
try {
// are we running services in host-network mode?
@ -206,10 +205,10 @@ export async function applyFirewallMode(mode: string) {
.apply(ruleAdaptor);
// all done!
log.success(`${LOG_PREFIX} Firewall mode applied`);
log.success(`Firewall mode applied`);
} catch (err) {
logSystemMessage(`${LOG_PREFIX} Firewall mode not applied due to error`);
log.error(`${LOG_PREFIX} Firewall mode not applied`);
logSystemMessage(`Firewall mode not applied due to error`);
log.error(`Firewall mode not applied`);
log.error('Error applying firewall mode', err);
if (err instanceof iptables.IPTablesRuleError) {