|
|
@@ -44,7 +44,6 @@ class PluginMixin:
|
|
|
for line in output:
|
|
|
if line.endswith('\n'):
|
|
|
line = line[:-1]
|
|
|
- logger.info(line)
|
|
|
_exit_code = output.exit_code()
|
|
|
output.close()
|
|
|
if _exit_code != 0:
|
|
|
@@ -57,9 +56,7 @@ class PluginMixin:
|
|
|
raise RuntimeError(
|
|
|
f'Failed to initialize plugin {requirement.name} with exit code {exit_code} and output: {output}'
|
|
|
)
|
|
|
- logger.info(
|
|
|
- f'Plugin {requirement.name} initialized successfully\n:{output}'
|
|
|
- )
|
|
|
+ logger.info(f'Plugin {requirement.name} initialized successfully.')
|
|
|
|
|
|
if len(requirements) > 0:
|
|
|
exit_code, output = self.execute('source ~/.bashrc')
|