We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f407047 commit 6eb6b83Copy full SHA for 6eb6b83
ydb/library/yql/yt/native/plugin.cpp
@@ -356,7 +356,9 @@ class TYqlPlugin
356
ProgramFactory_->SetFileStorage(FileStorage_);
357
ProgramFactory_->SetUrlPreprocessing(MakeIntrusive<NYql::TUrlPreprocessing>(GatewaysConfig_));
358
} catch (const std::exception& ex) {
359
- YQL_LOG(FATAL) << "Unexpected exception while initializing YQL plugin: " << ex.what();
+ // NB: YQL_LOG may be not initialized yet (for example, during singletons config parse),
360
+ // so we use std::cerr instead of it.
361
+ std::cerr << "Unexpected exception while initializing YQL plugin: " << ex.what() << std::endl;
362
exit(1);
363
}
364
YQL_LOG(INFO) << "YQL plugin initialized";
0 commit comments