Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
35 lines
1.2 KiB
PL/PgSQL
35 lines
1.2 KiB
PL/PgSQL
-- Create an enum for log levels
|
|
CREATE TYPE log_level AS ENUM ('INFO', 'WARNING', 'ERROR', 'DEBUG');
|
|
|
|
-- Create a function for logging with colors to terminal only, including database name
|
|
CREATE OR REPLACE FUNCTION log_message(log_text TEXT, level log_level DEFAULT 'INFO') RETURNS VOID AS $$
|
|
DECLARE
|
|
color_code TEXT;
|
|
reset_code TEXT := E'\033[0m'; -- Reset color
|
|
db_name TEXT;
|
|
formatted_message TEXT;
|
|
BEGIN
|
|
-- Get current database name
|
|
SELECT current_database() INTO db_name;
|
|
|
|
-- Choose color based on log level
|
|
CASE level
|
|
WHEN 'INFO' THEN color_code := E'\033[32m'; -- Green
|
|
WHEN 'DEBUG' THEN color_code := E'\033[33m'; -- Yellow
|
|
WHEN 'WARNING' THEN color_code := E'\033[35m'; -- Purple
|
|
WHEN 'ERROR' THEN color_code := E'\033[31m'; -- Red
|
|
END CASE;
|
|
|
|
-- Construct the formatted message
|
|
formatted_message := color_code || '[' || level::TEXT || '][' || db_name || '] ' || log_text || reset_code;
|
|
|
|
-- Raise notice with the formatted message
|
|
RAISE NOTICE '%', formatted_message;
|
|
END;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
|
|
DO $$ BEGIN PERFORM log_message('Setting app.environment as [ {APP_ENV} ]'); END $$;
|
|
ALTER DATABASE {DB_NAME} SET app.environment = '{APP_ENV}';
|
|
|