File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -240,6 +240,10 @@ end if
240240 else
241241 if (file_exists(" data_table.yaml" ))&
242242 call mpp_error(FATAL , " You cannot have the yaml data_table if use_data_table_yaml=.false." )
243+ call mpp_error(NOTE , &
244+ &" data_override_init:: You are using the yaml version of the data_table. &
245+ The legacy data_table format will be deprecated in a future release, &
246+ please switch to the yaml format." )
243247 allocate(data_table(max_table))
244248 do i = 1, max_table
245249 data_table(i) = default_table
@@ -252,6 +256,10 @@ end if
252256
253257 if (use_data_table_yaml) then
254258 call mpp_error(FATAL , " You cannot have use_data_table_yaml=.true. without compiling with -Duse_yaml" )
259+ call mpp_error(NOTE , &
260+ &" data_override_init:: You are using the yaml version of the data_table. &
261+ The legacy data_table format will be deprecated in a future release, &
262+ please switch to the yaml format." )
255263 else
256264
257265 allocate(data_table(max_table))
Original file line number Diff line number Diff line change @@ -557,12 +557,20 @@ subroutine field_manager_init(nfields, table_name)
557557 call mpp_error(FATAL, " You cannot have the legacy field_table if use_field_table_yaml=.true." )
558558
559559 call mpp_error(NOTE, " field_manager_init:: You are using the yaml version of the field_table" )
560+ call mpp_error(NOTE, &
561+ &" field_manager_init:: You are using the yaml version of the field_table. &
562+ The legacy field_table format will be deprecated in a future release, &
563+ please switch to the yaml format." )
560564 call read_field_table_yaml(nfields, table_name)
561565#endif
562566else
563567 if (file_exists(" field_table.yaml" )) &
564568 call mpp_error(FATAL, " You cannot have the yaml field_table if use_field_table_yaml=.false." )
565569 call mpp_error(NOTE, " field_manager_init:: You are using the legacy version of the field_table" )
570+ call mpp_error(NOTE, &
571+ &" field_manager_init:: You are using the yaml version of the field_table. &
572+ The legacy field_table format will be deprecated in a future release, &
573+ please switch to the yaml format." )
566574 call read_field_table_legacy(nfields, table_name)
567575endif
568576
You can’t perform that action at this time.
0 commit comments