Merge pull request #1762 from peakyDicers/firewall-logs-remove-emoji

Removed fire emoji from firewall logs.
This commit is contained in:
bulldozer-balena[bot] 2021-08-02 22:20:05 +00:00 committed by GitHub
commit 61b07c8cb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) {