@@ -86,16 +86,6 @@ string BuildConfiguration1()
8686 sb . AppendFormat ( "exclude_filter {0}" , WriteRegEx ( ExcludeFilter ) ) ;
8787 sb . AppendLine ( ) ;
8888 }
89- if ( ! string . IsNullOrEmpty ( IncludeGdsCodes ) )
90- {
91- sb . AppendFormat ( "include_gds_codes {0}" , WriteString ( IncludeGdsCodes ) ) ;
92- sb . AppendLine ( ) ;
93- }
94- if ( ! string . IsNullOrEmpty ( ExcludeGdsCodes ) )
95- {
96- sb . AppendFormat ( "exclude_gds_codes {0}" , WriteString ( ExcludeGdsCodes ) ) ;
97- sb . AppendLine ( ) ;
98- }
9989 sb . AppendFormat ( "log_connections {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . Connections ) ) ) ;
10090 sb . AppendLine ( ) ;
10191 sb . AppendFormat ( "connection_id {0}" , WriteNumber ( ConnectionID ) ) ;
@@ -114,10 +104,6 @@ string BuildConfiguration1()
114104 sb . AppendLine ( ) ;
115105 sb . AppendFormat ( "log_procedure_finish {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . ProcedureFinish ) ) ) ;
116106 sb . AppendLine ( ) ;
117- sb . AppendFormat ( "log_function_start {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . FunctionStart ) ) ) ;
118- sb . AppendLine ( ) ;
119- sb . AppendFormat ( "log_function_finish {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . FunctionFinish ) ) ) ;
120- sb . AppendLine ( ) ;
121107 sb . AppendFormat ( "log_trigger_start {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . TriggerStart ) ) ) ;
122108 sb . AppendLine ( ) ;
123109 sb . AppendFormat ( "log_trigger_finish {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . TriggerFinish ) ) ) ;
@@ -134,8 +120,6 @@ string BuildConfiguration1()
134120 sb . AppendLine ( ) ;
135121 sb . AppendFormat ( "print_plan {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . PrintPlan ) ) ) ;
136122 sb . AppendLine ( ) ;
137- sb . AppendFormat ( "explain_plan {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . ExplainPlan ) ) ) ;
138- sb . AppendLine ( ) ;
139123 sb . AppendFormat ( "print_perf {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . PrintPerf ) ) ) ;
140124 sb . AppendLine ( ) ;
141125 sb . AppendFormat ( "log_blr_requests {0}" , WriteBoolValue ( Events . HasFlag ( FbDatabaseTraceEvents . BLRRequests ) ) ) ;
0 commit comments