* Renders the support logo to the console.
()
| 948 | * Renders the support logo to the console. |
| 949 | */ |
| 950 | logoSupport() { |
| 951 | // Stop the spinner to not collide with prompt |
| 952 | renderer.spinner.stop() |
| 953 | |
| 954 | const content = renderer.style.bold( |
| 955 | `${renderer.style.title('Serverless ')}${renderer.colors.red( |
| 956 | 'ϟ', |
| 957 | )}${renderer.style.title(' Support')}`, |
| 958 | ) |
| 959 | |
| 960 | writeStdErr({ |
| 961 | level: 'notice', |
| 962 | messageTokens: [content], |
| 963 | }) |
| 964 | |
| 965 | // Restart the spinner if it was stopped |
| 966 | renderer.spinner.start() |
| 967 | } |
| 968 | |
| 969 | /** |
| 970 | * Renders the dev mode logo to the console. |
no test coverage detected